vcpkg/ports/zeromq/vcpkg.json
Frank 51beb92ce4
[zeromq] Enable libsodium with feature curve (#32269)
* [zeromq] Enable libsodium with feature curve

* format json

* update version

* add port-version

* version

* feature

* version

* missing

* version
2023-06-29 14:42:28 -07:00

57 lines
1.3 KiB
JSON

{
"name": "zeromq",
"version-date": "2023-06-20",
"port-version": 1,
"description": "The ZeroMQ lightweight messaging kernel is a library which extends the standard socket interfaces with features traditionally provided by specialised messaging middleware products",
"homepage": "https://github.com/zeromq/libzmq",
"license": "MPL-2.0",
"supports": "!uwp & !xbox",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"curve": {
"description": "Enable CURVE security"
},
"draft": {
"description": "Build and install draft APIs"
},
"sodium": {
"description": "Using libsodium for CURVE security",
"dependencies": [
"libsodium",
{
"name": "zeromq",
"default-features": false,
"features": [
"curve"
]
}
]
},
"websockets": {
"description": "Enable WebSocket transport"
},
"websockets-secure": {
"description": "Enable WebSocket transport with TSL (wss)",
"dependencies": [
"libgnutls",
{
"name": "zeromq",
"default-features": false,
"features": [
"websockets"
]
}
]
}
}
}