vcpkg/ports/azure-core-cpp/vcpkg.json
Azure SDK Bot fd117d229d
[azure-core-tracing-opentelemetry-cpp | azure-core-cpp] Add new port and publish azure-core-cpp version to 1.0.0-beta.2 (#25507)
* [azure-core-tracing-opentelemetry-cpp] Update to 1.0.0-beta.2
## 1.0.0-beta.2 (2022-06-30)

### Breaking Changes

- The `Azure::Core::Tracing::OpenTelemetry::OpenTelemetryProvider` type can only be instantiated via a factory method: `OpenTelemetryProvider::Create()`.

### Other Changes

- Removed `_internal` APIs from the public API surface. Also removed most of the `_internal` APIs from the public `opentelemetry.hpp` headers.

* [azure-core-cpp] Update to 1.7.0
## 1.7.0 (2022-06-30)

### Features Added

- Added prototypes and initial service support for Distributed Tracing.
2022-07-14 12:15:41 -07:00

76 lines
1.7 KiB
JSON

{
"name": "azure-core-cpp",
"version-semver": "1.7.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",
"dependencies": [
{
"name": "azure-core-cpp",
"default-features": false
}
]
}
}
}