mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 05:21:49 +08:00
89f3bf357c
## 1.10.0 (2023-06-01) ### Features Added - Added `Azure::Core::Uuid::AsArray()` and `Azure::Core::Uuid::CreateFromArray()` to enable reading or writing from an existing UUID. This is useful when the UUID was generated outside the Azure SDK, or needs to be used from a component outside the Azure SDK. ### Other Changes - [[#3964]](https://github.com/Azure/azure-sdk-for-cpp/issues/3964) Ensuring some Azure SDK types have the expected default operations. (A community contribution, courtesy of _[jnyfah](https://github.com/jnyfah)_) ### Acknowledgments Thank you to our developer community members who helped to make Azure Core better with their contributions to this release: - Jennifer Chukwu _([GitHub](https://github.com/jnyfah))_
78 lines
1.7 KiB
JSON
78 lines
1.7 KiB
JSON
{
|
|
"name": "azure-core-cpp",
|
|
"version-semver": "1.10.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",
|
|
"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",
|
|
"supports": "windows",
|
|
"dependencies": [
|
|
{
|
|
"name": "azure-core-cpp",
|
|
"default-features": false
|
|
},
|
|
"wil"
|
|
]
|
|
}
|
|
}
|
|
}
|