mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 17:39:01 +08:00
f9d514aea5
* [restc-cpp] new port * Updated port's version-string Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * [restc-cpp] added port version * [restc-cpp] new port * Updated port's version-string Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * [restc-cpp] added port version * [restc_cpp] updated MSVC CRT linkage * [restc-cpp] reformated vcpkg.json * [restc-cpp] updated port's version * [restc-cpp] excluded dependency on cmake external projects * [restc-cpp] updated version hash * [rest-cpp] Remove changes about CRT linkage * update version record * Update ports/restc-cpp/portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * [restc-cpp] added an error message for mutual exclusive logging features * [restc-cpp] updated port version * Updated ports/restc-cpp/vcpkg.json Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * Updated ports/restc-cpp/vcpkg.json Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * Update ports/restc-cpp/vcpkg.json Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * Updated ports/restc-cpp/vcpkg.json Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * Updated ports/restc-cpp/vcpkg.json Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * Updated ports/restc-cpp/vcpkg.json Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * Updated ports/restc-cpp/portfile.cmake Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * Updated ports/restc-cpp/portfile.cmake Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * Updated ports/restc-cpp/portfile.cmake Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * [restc-cpp] updated port version * [restc-cpp] version file has to declare version as 'version-semver' Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com> Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
41 lines
838 B
JSON
41 lines
838 B
JSON
{
|
|
"name": "restc-cpp",
|
|
"version-semver": "0.10.0",
|
|
"description": "Modern C++ REST Client library",
|
|
"homepage": "https://github.com/jgaa/restc-cpp",
|
|
"license": "MIT",
|
|
"dependencies": [
|
|
"boost-chrono",
|
|
"boost-context",
|
|
"boost-coroutine",
|
|
"boost-date-time",
|
|
"boost-filesystem",
|
|
"boost-log",
|
|
"boost-program-options",
|
|
"boost-system",
|
|
"boost-uuid",
|
|
"rapidjson"
|
|
],
|
|
"default-features": [
|
|
"openssl",
|
|
"zlib"
|
|
],
|
|
"features": {
|
|
"openssl": {
|
|
"description": "OpenSSL support.",
|
|
"dependencies": [
|
|
"openssl"
|
|
]
|
|
},
|
|
"threaded-ctx": {
|
|
"description": "Allow asio contexts with multiple threads. Enables thread-safe internal access."
|
|
},
|
|
"zlib": {
|
|
"description": "Use zlib.",
|
|
"dependencies": [
|
|
"zlib"
|
|
]
|
|
}
|
|
}
|
|
}
|