mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 07:39:01 +08:00
50a4a35eb1
* [ixwebsocket] Update to 11.2.6 * Update json file Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
63 lines
1.3 KiB
JSON
63 lines
1.3 KiB
JSON
{
|
|
"name": "ixwebsocket",
|
|
"version-semver": "11.2.6",
|
|
"description": "Lightweight WebSocket Client and Server + HTTP Client and Server",
|
|
"homepage": "https://github.com/machinezone/IXWebSocket",
|
|
"dependencies": [
|
|
"zlib"
|
|
],
|
|
"default-features": [
|
|
"ssl"
|
|
],
|
|
"features": {
|
|
"mbedtls": {
|
|
"description": "SSL support (mbedTLS)",
|
|
"dependencies": [
|
|
"mbedtls"
|
|
]
|
|
},
|
|
"openssl": {
|
|
"description": "SSL support (OpenSSL)",
|
|
"dependencies": [
|
|
"openssl"
|
|
]
|
|
},
|
|
"sectransp": {
|
|
"description": "SSL support (sectransp)"
|
|
},
|
|
"ssl": {
|
|
"description": "Default SSL backend",
|
|
"dependencies": [
|
|
{
|
|
"name": "ixwebsocket",
|
|
"features": [
|
|
"sectransp"
|
|
],
|
|
"platform": "osx"
|
|
},
|
|
{
|
|
"name": "ixwebsocket",
|
|
"features": [
|
|
"mbedtls"
|
|
],
|
|
"platform": "windows"
|
|
},
|
|
{
|
|
"name": "ixwebsocket",
|
|
"features": [
|
|
"mbedtls"
|
|
],
|
|
"platform": "windows & uwp"
|
|
},
|
|
{
|
|
"name": "ixwebsocket",
|
|
"features": [
|
|
"openssl"
|
|
],
|
|
"platform": "!uwp & !windows & !osx"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|