aboutsummaryrefslogtreecommitdiffstats
path: root/mumd/Cargo.toml
blob: 9af1f73e1d5afcbb12ead46f21e4f792e2a298ff (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.3.0"
authors = ["Gustav Sörnäs <gustav@sornas.net>",
           "Eskil Queseth <eskilq@kth.se>"]
edition = "2018"
description = """
Mumble client daemon.
"""
repository = "https://github.com/sornas/mum"
license = "MIT"

[features]
default = ["notifications"]

notifications = ["libnotify"]

[dependencies]
mumlib = { version = "0.3", path = "../mumlib" }

argparse = "0.2"
cpal = "0.13"
bytes = "1.0"
dasp_interpolate = { version = "0.11", features = ["linear"] }
dasp_signal = "0.11"
futures = "0.3"
futures-util = "0.3"
hound = "3.4"
ipc-channel = "0.14"
log = "0.4"
mumble-protocol = "0.4.0"
native-tls = "0.2"
openssl = { version = "0.10" }
opus = "0.2"
serde = { version = "1.0", features = ["derive"] }
strum = "0.20"
strum_macros = "0.20"
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "net", "time"] }
tokio-native-tls = "0.3"
tokio-util = { version = "0.6", features = ["codec", "net"] }

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

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