vcpkg/ports/usockets/vcpkg.json
Andrew 026b589594
uSockets v0.8.8 (#38527)
- [V] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md).
- [V] SHA512s are updated for each updated download.
- [V] The "supports" clause reflects platforms that may be fixed by this
new version.
- [V] Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt)
entries are removed from that file.
- [V] Any patches that are no longer applied are deleted from the port's
directory.
- [V] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [V] Only one version is added to each modified port's versions file.
2024-05-03 15:22:13 -07:00

33 lines
712 B
JSON

{
"name": "usockets",
"version": "0.8.8",
"port-version": 1,
"description": "Miniscule cross-platform eventing, networking & crypto for async applications",
"homepage": "https://github.com/uNetworking/uSockets",
"license": "Apache-2.0",
"dependencies": [
"libuv",
{
"name": "vcpkg-cmake",
"host": true
}
],
"features": {
"event": {
"description": "Build usockets with epoll support"
},
"network": {
"description": "Build usockets with winsock support",
"dependencies": [
"winsock2"
]
},
"ssl": {
"description": "Build usockets with openssl support",
"dependencies": [
"openssl"
]
}
}
}