diff options
Diffstat (limited to 'mumd/Cargo.toml')
| -rw-r--r-- | mumd/Cargo.toml | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/mumd/Cargo.toml b/mumd/Cargo.toml index a7a5ef8..1096041 100644 --- a/mumd/Cargo.toml +++ b/mumd/Cargo.toml @@ -9,7 +9,13 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] -default = ["libnotify"] +default = [] + +all = ["libnotify", "hound", "samplerate"] + +notifications = ["libnotify"] + +sounds = ["hound", "samplerate"] [dependencies] mumlib = { path = "../mumlib" } @@ -23,16 +29,17 @@ ipc-channel = "0.14" log = "0.4" mumble-protocol = "0.3" native-tls = "0.2" -openssl = { version = "0.10", optional = true } +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"] } -hound = "3.4.0" -samplerate = "0.2.2" 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" |
