mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-30 14:59:03 +08:00
698c444403
* [azure-core-cpp] Update to 1.1.0 ## 1.1.0 (2021-07-02) ### Bugs Fixed - Fixed a memory leak issue in `Base64Encode()`. (A community contribution, courtesy of _[jorgen](https://github.com/jorgen)_) ### Other Changes - Made internal-only changes to support the Azure Key Vault client library. ### Acknowledgments Thank you to our developer community members who helped to make Azure Core better with their contributions to this release: - Jorgen Lind _([GitHub](https://github.com/jorgen))_ * [azure-storage-common-cpp] Update to 12.0.1 ## 12.0.1 (2021-07-07) ### Bug Fixes - Fixed a memory leak issue while parsing XML. * [azure-storage-blobs-cpp] Update to 12.0.1 ## 12.0.1 (2021-07-07) ### Bug Fixes - Fixed a bug where transactional MD5 hash was treated as blob MD5 hash when downloading partial blob. * [azure-storage-files-datalake-cpp] Update to 12.0.1 ## 12.0.1 (2021-07-07) ### Bug Fixes - Fixed a bug where transactional MD5 hash was treated as blob MD5 hash when downloading partial blob. * [azure-storage-files-shares-cpp] Update to 12.0.1 ## 12.0.1 (2021-07-07) No API changes since `12.0.0`. * Remove curl version from vcpkg manifest * Update version files Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
77 lines
1.7 KiB
JSON
77 lines
1.7 KiB
JSON
{
|
|
"name": "azure-core-cpp",
|
|
"version-semver": "1.1.0",
|
|
"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",
|
|
"builtin-baseline": "14c54c49b56a964ac7f2f701a6857adb02ae1bec",
|
|
"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"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"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",
|
|
"dependencies": [
|
|
{
|
|
"name": "azure-core-cpp",
|
|
"default-features": false
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|