mumble-web-proxy/Cargo.toml

24 lines
675 B
TOML
Raw Normal View History

2018-12-02 22:25:45 +00:00
[package]
name = "mumble-web-proxy"
version = "0.1.0"
authors = ["Jonas Herzig <me@johni0702.de>"]
2020-04-03 18:55:59 +00:00
edition = "2018"
2018-12-02 22:25:45 +00:00
[dependencies]
argparse = "0.2.2"
bytes = "0.5"
2018-12-02 22:25:45 +00:00
byteorder = "1.2"
futures = { version = "0.3", features = ["compat", "io-compat"] }
tokio = { version = "0.2", features = ["full"] }
tokio-util = { version = "0.3", features = ["codec"] }
tokio-tls = "0.3"
native-tls = "0.2"
mumble-protocol = { version = "0.3", features = ["webrtc-extensions"] }
tokio-tungstenite = "0.10"
http = "0.2"
tungstenite = "0.10"
rtp = { git = "https://github.com/johni0702/rtp", rev = "1444b3c", features = ["rfc5764-openssl"] }
libnice = "0.2"
webrtc-sdp = "0.3"
2018-12-02 22:25:45 +00:00
openssl = "0.10"