diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2020-11-27 21:04:51 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2020-11-28 02:47:16 +0100 |
| commit | 7314922fe32ab29757c61ed613b76fb0a0ad78b5 (patch) | |
| tree | e64d7ec8708c8579c4ae28fbe365ccd8d3a8ae41 /mumd/Cargo.toml | |
| parent | 9f02a43affa775cc45a0e3ba9147a2f4a882a6ff (diff) | |
| download | mum-7314922fe32ab29757c61ed613b76fb0a0ad78b5.tar.gz | |
remove sound-effects feature
Diffstat (limited to 'mumd/Cargo.toml')
| -rw-r--r-- | mumd/Cargo.toml | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/mumd/Cargo.toml b/mumd/Cargo.toml index 936353a..ba0f5a0 100644 --- a/mumd/Cargo.toml +++ b/mumd/Cargo.toml @@ -9,20 +9,21 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] -default = ["notifications", "sound-effects"] +default = ["notifications"] notifications = ["libnotify"] -sound-effects = ["hound", "dasp_signal", "dasp_interpolate"] - [dependencies] mumlib = { path = "../mumlib" } argparse = "0.2" bytes = "0.5" cpal = { git = "https://github.com/RustAudio/cpal" } +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.3" @@ -36,9 +37,5 @@ tokio-util = { version = "0.3", features = ["codec", "udp"] } libnotify = { version = "1.0", optional = true } -dasp_signal = { version = "0.11", optional = true } -dasp_interpolate = { version = "0.11", features = ["linear"], optional = true } -hound = { version = "3.4", optional = true } - #compressor = "0.3" #daemonize = "0.4" |
