vcpkg/ports/azure-core-cpp/vcpkg.json
Billy O'Neal 94340266a8
[azure-core-cpp] Don't refer to versions of curl that don't exist. (#33109)
There's a "version>=" against a version of curl that does not exist in the version database. This causes customers that use versioning with Azure components to fail to resolve a version; versions need to be in the version database for us to be able to compare them.
2023-08-11 11:49:49 -07:00

80 lines
1.8 KiB
JSON

{
"name": "azure-core-cpp",
"version-semver": "1.10.2",
"port-version": 1,
"description": [
"Microsoft Azure Core SDK for C++",
"This library provides shared primitives, abstractions, and helpers for modern Azure SDK client libraries written in the C++."
],
"homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/main/sdk/core/azure-core",
"license": "MIT",
"dependencies": [
{
"name": "openssl",
"platform": "!windows & !uwp"
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"http"
],
"features": {
"curl": {
"description": "Libcurl HTTP transport implementation",
"dependencies": [
{
"name": "azure-core-cpp",
"default-features": false
},
{
"name": "curl",
"default-features": false,
"features": [
"ssl"
],
"version>=": "7.48"
}
]
},
"http": {
"description": "All HTTP transport implementations available on the platform",
"dependencies": [
{
"name": "azure-core-cpp",
"default-features": false,
"features": [
"curl"
]
},
{
"name": "azure-core-cpp",
"default-features": false,
"features": [
"curl",
"winhttp"
],
"platform": "windows & !uwp"
}
]
},
"winhttp": {
"description": "WinHTTP HTTP transport implementation",
"supports": "windows",
"dependencies": [
{
"name": "azure-core-cpp",
"default-features": false
},
"wil"
]
}
}
}