vcpkg/ports/libdatachannel/vcpkg.json
Cal McLean 526d0625e1
[libdatachannel] Update to v0.14.3 (#19826)
* [libdatachannel] update to version 0.14.3, fixing linking errors

* [libdatachannel] correctly format manifest

* [libdatachannel]: x-add-version --all
2021-09-02 18:03:41 -07:00

30 lines
795 B
JSON

{
"name": "libdatachannel",
"version-semver": "0.14.3",
"description": "libdatachannel is a standalone implementation of WebRTC Data Channels, WebRTC Media Transport, and WebSockets in C++17 with C bindings for POSIX platforms (including GNU/Linux, Android, and Apple macOS) and Microsoft Windows.",
"homepage": "https://github.com/paullouisageneau/libdatachannel",
"dependencies": [
"libjuice",
"openssl",
"plog",
"usrsctp"
],
"default-features": [
"ws"
],
"features": {
"srtp": {
"description": "Use Cisco's libSRTP for media transport.",
"dependencies": [
"libsrtp"
]
},
"stdcall": {
"description": "Use stdcall convention in callbacks"
},
"ws": {
"description": "Web Socket support"
}
}
}