vcpkg/ports/ixwebsocket/vcpkg.json
Cheney Wang 50a4a35eb1
[ixwebsocket] Update to 11.2.6 (#17999)
* [ixwebsocket] Update to 11.2.6

* Update json file

Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2021-05-21 00:39:28 -07:00

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"
}
]
}
}
}