aboutsummaryrefslogtreecommitdiffstats
path: root/mumd/Cargo.toml
blob: 1096041b9c5ff08e2ce0056aea902f05e9fb2174 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "mumd"
version = "0.2.0"
authors = ["Gustav Sörnäs <gustav@sornas.net>",
           "Eskil Queseth <eskilq@kth.se>"]
license = "MIT"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = []

all = ["libnotify", "hound", "samplerate"]

notifications = ["libnotify"]

sounds = ["hound", "samplerate"]

[dependencies]
mumlib = { path = "../mumlib" }

argparse = "0.2"
bytes = "0.5"
cpal = { git = "https://github.com/RustAudio/cpal" }
futures = "0.3"
futures-util = "0.3"
ipc-channel = "0.14"
log = "0.4"
mumble-protocol = "0.3"
native-tls = "0.2"
openssl = { version = "0.10" }
opus = "0.2"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "0.2", features = ["full"] }
tokio-tls = "0.3"
tokio-util = { version = "0.3", features = ["codec", "udp"] }

libnotify = { version = "1.0", optional = true }

hound = { version = "3.4.0", optional = true }
samplerate = { version = "0.2.2", optional = true }

#compressor = "0.3"
#daemonize = "0.4"