mumble-web-proxy/Cargo.toml

26 lines
746 B
TOML
Raw Permalink Normal View History

2018-12-02 22:25:45 +00:00
[package]
name = "mumble-web-proxy"
version = "0.1.1"
2018-12-02 22:25:45 +00:00
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"
2021-01-17 15:47:41 +00:00
bytes = "1"
2018-12-02 22:25:45 +00:00
byteorder = "1.2"
futures = { version = "0.3", features = ["compat", "io-compat"] }
toml = "0.5"
serde = { version = "1.0", features = ["derive"] }
2021-01-17 15:47:41 +00:00
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.6", features = ["codec"] }
tokio-native-tls = "0.3"
native-tls = "0.2"
2021-01-17 15:47:41 +00:00
mumble-protocol = { version = "0.4", features = ["webrtc-extensions"] }
tokio-tungstenite = "0.13"
http = "0.2"
2021-01-17 15:47:41 +00:00
tungstenite = "0.12"
rtp = { git = "https://github.com/HenkKalkwater/rtp", rev = "7b6835c", features = ["rfc5764-openssl"] }
2021-01-17 15:36:27 +00:00
libnice = "0.3"
webrtc-sdp = "0.3"
2018-12-02 22:25:45 +00:00
openssl = "0.10"