diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2020-11-13 01:06:09 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2020-11-13 01:06:09 +0100 |
| commit | 447cdfa8d8feae4aaf1892546318a6ef4fc8ad72 (patch) | |
| tree | 095e98504413b731feeb75eb1e92a020380b7653 /mumd/Cargo.toml | |
| parent | 1b3bcebc895bfa4b6f65697fafc31d482c74b2de (diff) | |
| parent | 0ae73c2522fde0307c96cfb92aca49e2176f277f (diff) | |
| download | mum-447cdfa8d8feae4aaf1892546318a6ef4fc8ad72.tar.gz | |
Merge branch 'cfg-libnotify' into 'main'
Add feature libnotify to mumd
Closes #66
See merge request gustav/mum!30
Diffstat (limited to 'mumd/Cargo.toml')
| -rw-r--r-- | mumd/Cargo.toml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mumd/Cargo.toml b/mumd/Cargo.toml index 350d81e..3dfc82c 100644 --- a/mumd/Cargo.toml +++ b/mumd/Cargo.toml @@ -8,6 +8,9 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[features] +default = ["libnotify"] + [dependencies] mumlib = { path = "../mumlib" } @@ -17,7 +20,6 @@ cpal = { git = "https://github.com/RustAudio/cpal" } futures = "0.3" futures-util = "0.3" ipc-channel = "0.14" -libnotify = "1.0" log = "0.4" mumble-protocol = "0.3" native-tls = "0.2" @@ -28,5 +30,7 @@ tokio = { version = "0.2", features = ["full"] } tokio-tls = "0.3" tokio-util = { version = "0.3", features = ["codec", "udp"] } +libnotify = { version = "1.0", optional = true } + #compressor = "0.3" #daemonize = "0.4" |
