mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 09:08:59 +08:00
[cpprestsdk] use platform expressions in default-features (#32998)
* [cpprestsdk] use platform expressions in default-features * [microsoft-signalr] use platform expressions in default-features * [signalrclient] fix dependencies
This commit is contained in:
parent
fe1369ae90
commit
6da00e1160
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "cpprestsdk",
|
"name": "cpprestsdk",
|
||||||
"version": "2.10.18",
|
"version": "2.10.18",
|
||||||
"port-version": 2,
|
"port-version": 3,
|
||||||
"description": [
|
"description": [
|
||||||
"C++11 JSON, REST, and OAuth library",
|
"C++11 JSON, REST, and OAuth library",
|
||||||
"The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services."
|
"The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services."
|
||||||
@ -55,7 +55,11 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"default-features": [
|
"default-features": [
|
||||||
"default-features"
|
{
|
||||||
|
"name": "brotli",
|
||||||
|
"platform": "windows"
|
||||||
|
},
|
||||||
|
"compression"
|
||||||
],
|
],
|
||||||
"features": {
|
"features": {
|
||||||
"brotli": {
|
"brotli": {
|
||||||
@ -77,25 +81,6 @@
|
|||||||
"zlib"
|
"zlib"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"default-features": {
|
|
||||||
"description": "Features installed by default",
|
|
||||||
"dependencies": [
|
|
||||||
{
|
|
||||||
"name": "cpprestsdk",
|
|
||||||
"default-features": false,
|
|
||||||
"features": [
|
|
||||||
"compression"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "cpprestsdk",
|
|
||||||
"features": [
|
|
||||||
"brotli"
|
|
||||||
],
|
|
||||||
"platform": "windows"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"websockets": {
|
"websockets": {
|
||||||
"description": "Websockets support",
|
"description": "Websockets support",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "microsoft-signalr",
|
"name": "microsoft-signalr",
|
||||||
"version": "0.1.0-alpha4",
|
"version": "0.1.0-alpha4",
|
||||||
"port-version": 6,
|
"port-version": 7,
|
||||||
"description": "C++ Client for ASP.NET Core SignalR.",
|
"description": "C++ Client for ASP.NET Core SignalR.",
|
||||||
"homepage": "https://github.com/aspnet/SignalR-Client-Cpp",
|
"homepage": "https://github.com/aspnet/SignalR-Client-Cpp",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
@ -16,7 +16,10 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"default-features": [
|
"default-features": [
|
||||||
"default-features"
|
{
|
||||||
|
"name": "cpprestsdk",
|
||||||
|
"platform": "!uwp"
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"features": {
|
"features": {
|
||||||
"cpprestsdk": {
|
"cpprestsdk": {
|
||||||
@ -25,24 +28,11 @@
|
|||||||
{
|
{
|
||||||
"name": "cpprestsdk",
|
"name": "cpprestsdk",
|
||||||
"features": [
|
"features": [
|
||||||
"default-features",
|
|
||||||
"websockets"
|
"websockets"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"default-features": {
|
|
||||||
"description": "Features installed by default",
|
|
||||||
"dependencies": [
|
|
||||||
{
|
|
||||||
"name": "microsoft-signalr",
|
|
||||||
"features": [
|
|
||||||
"cpprestsdk"
|
|
||||||
],
|
|
||||||
"platform": "!uwp"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"messagepack": {
|
"messagepack": {
|
||||||
"description": "Add support for the messagepack hub protocol, must enable in code still",
|
"description": "Add support for the messagepack hub protocol, must enable in code still",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
|
@ -1,14 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "signalrclient",
|
"name": "signalrclient",
|
||||||
"version": "1.0.0-beta1-9",
|
"version": "1.0.0-beta1-9",
|
||||||
"port-version": 4,
|
"port-version": 5,
|
||||||
"description": "C++ client for SignalR.",
|
"description": "C++ client for SignalR.",
|
||||||
"homepage": "https://github.com/SignalR/SignalR-Client-Cpp",
|
"homepage": "https://github.com/SignalR/SignalR-Client-Cpp",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
{
|
{
|
||||||
"name": "cpprestsdk",
|
"name": "cpprestsdk",
|
||||||
"features": [
|
"features": [
|
||||||
"default-features",
|
|
||||||
"websockets"
|
"websockets"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -1838,7 +1838,7 @@
|
|||||||
},
|
},
|
||||||
"cpprestsdk": {
|
"cpprestsdk": {
|
||||||
"baseline": "2.10.18",
|
"baseline": "2.10.18",
|
||||||
"port-version": 2
|
"port-version": 3
|
||||||
},
|
},
|
||||||
"cppslippi": {
|
"cppslippi": {
|
||||||
"baseline": "1.0.3.14",
|
"baseline": "1.0.3.14",
|
||||||
@ -5326,7 +5326,7 @@
|
|||||||
},
|
},
|
||||||
"microsoft-signalr": {
|
"microsoft-signalr": {
|
||||||
"baseline": "0.1.0-alpha4",
|
"baseline": "0.1.0-alpha4",
|
||||||
"port-version": 6
|
"port-version": 7
|
||||||
},
|
},
|
||||||
"mikktspace": {
|
"mikktspace": {
|
||||||
"baseline": "2020-10-06",
|
"baseline": "2020-10-06",
|
||||||
@ -7574,7 +7574,7 @@
|
|||||||
},
|
},
|
||||||
"signalrclient": {
|
"signalrclient": {
|
||||||
"baseline": "1.0.0-beta1-9",
|
"baseline": "1.0.0-beta1-9",
|
||||||
"port-version": 4
|
"port-version": 5
|
||||||
},
|
},
|
||||||
"sigslot": {
|
"sigslot": {
|
||||||
"baseline": "1.0.0",
|
"baseline": "1.0.0",
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{
|
{
|
||||||
"versions": [
|
"versions": [
|
||||||
|
{
|
||||||
|
"git-tree": "53f896a9d80f0fd51e2645ee7deccbc0c955859a",
|
||||||
|
"version": "2.10.18",
|
||||||
|
"port-version": 3
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"git-tree": "e1fb46f5d043e3a354bfbc6f77df5df3b321f74b",
|
"git-tree": "e1fb46f5d043e3a354bfbc6f77df5df3b321f74b",
|
||||||
"version": "2.10.18",
|
"version": "2.10.18",
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{
|
{
|
||||||
"versions": [
|
"versions": [
|
||||||
|
{
|
||||||
|
"git-tree": "777629bd31d9a4885b696623304b030c29b552c4",
|
||||||
|
"version": "0.1.0-alpha4",
|
||||||
|
"port-version": 7
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"git-tree": "9a366b0a8f7b8177b0c91de00d652dfac38ed927",
|
"git-tree": "9a366b0a8f7b8177b0c91de00d652dfac38ed927",
|
||||||
"version": "0.1.0-alpha4",
|
"version": "0.1.0-alpha4",
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{
|
{
|
||||||
"versions": [
|
"versions": [
|
||||||
|
{
|
||||||
|
"git-tree": "28135a6a807825f1fdfbb1e086c10569d385482c",
|
||||||
|
"version": "1.0.0-beta1-9",
|
||||||
|
"port-version": 5
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"git-tree": "c2981e91dbe37fc7ab10d1c071d4a47b1388eb3b",
|
"git-tree": "c2981e91dbe37fc7ab10d1c071d4a47b1388eb3b",
|
||||||
"version": "1.0.0-beta1-9",
|
"version": "1.0.0-beta1-9",
|
||||||
|
Loading…
Reference in New Issue
Block a user