mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 06:38:59 +08:00
d781bd9ca7
* [restc-cpp] make using boost-log an optional feature * Update versions/r-/restc-cpp.json * Remove boost-log from dependencies * Update versions/r-/restc-cpp.json * [restc-cpp] Add boost-asio dependency * update version SHA Co-authored-by: Sandro Scherer <sandro.scherer@siemens.com> Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com> Co-authored-by: Victor Romero <romerosanchezv@gmail.com>
48 lines
989 B
JSON
48 lines
989 B
JSON
{
|
|
"name": "restc-cpp",
|
|
"version-semver": "0.10.0",
|
|
"port-version": 1,
|
|
"description": "Modern C++ REST Client library",
|
|
"homepage": "https://github.com/jgaa/restc-cpp",
|
|
"license": "MIT",
|
|
"dependencies": [
|
|
"boost-asio",
|
|
"boost-chrono",
|
|
"boost-context",
|
|
"boost-coroutine",
|
|
"boost-date-time",
|
|
"boost-filesystem",
|
|
"boost-program-options",
|
|
"boost-system",
|
|
"boost-uuid",
|
|
"rapidjson"
|
|
],
|
|
"default-features": [
|
|
"openssl",
|
|
"zlib"
|
|
],
|
|
"features": {
|
|
"boost-log": {
|
|
"description": "Use boost-log for logging.",
|
|
"dependencies": [
|
|
"boost-log"
|
|
]
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|
|
}
|