2018-12-02 22:25:45 +00:00
|
|
|
[package]
|
|
|
|
name = "mumble-web-proxy"
|
2020-11-08 15:00:42 +00:00
|
|
|
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"
|
2020-04-05 14:13:45 +00:00
|
|
|
bytes = "0.5"
|
2018-12-02 22:25:45 +00:00
|
|
|
byteorder = "1.2"
|
2020-04-05 14:13:45 +00:00
|
|
|
futures = { version = "0.3", features = ["compat", "io-compat"] }
|
2020-07-05 10:07:43 +00:00
|
|
|
toml = "0.5"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2020-04-05 14:13:45 +00:00
|
|
|
tokio = { version = "0.2", features = ["full"] }
|
|
|
|
tokio-util = { version = "0.3", features = ["codec"] }
|
|
|
|
tokio-tls = "0.3"
|
2019-01-30 09:47:37 +00:00
|
|
|
native-tls = "0.2"
|
2020-04-05 14:13:45 +00:00
|
|
|
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"] }
|
2020-11-08 15:00:42 +00:00
|
|
|
libnice = "0.2.1"
|
2020-04-05 14:13:45 +00:00
|
|
|
webrtc-sdp = "0.3"
|
2018-12-02 22:25:45 +00:00
|
|
|
openssl = "0.10"
|
2020-05-05 12:30:08 +00:00
|
|
|
|
|
|
|
[replace]
|
|
|
|
"rust-crypto:0.2.36" = { git = "https://github.com/awmath/rust-crypto.git", branch = "avx2" }
|