blob: 557345367df429f1e0bcfc85266f3906d84a8e35 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
[package]
name = "mumd"
version = "0.1.0"
authors = ["Gustav Sörnäs <gustav@sornas.net>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
daemonize = "0.4"
ipc-channel = "0.14"
serde = { version = "1.0", features = ["derive"] }
clap = "2.33"
mumble-protocol = "0.3"
cpal = { git = "https://github.com/RustAudio/cpal" }
opus = "0.2"
futures-util = "0.3"
bytes = "0.5"
byteorder = "1"
protobuf = "2"
openssl = { version = "0.10", optional = true }
argparse = "0.2"
futures = "0.3"
native-tls = "0.2"
tokio = { version = "0.2", features = ["full"] }
tokio-util = { version = "0.3", features = ["codec", "udp"] }
tokio-tls = "0.3"
|