From dbcc5373fab41d876f4495463d76c1ab28c9d670 Mon Sep 17 00:00:00 2001 From: Eskil Q Date: Sun, 27 Dec 2020 15:43:58 +0100 Subject: create noise-gate struct --- mumd/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mumd/Cargo.toml') diff --git a/mumd/Cargo.toml b/mumd/Cargo.toml index 7f014bd..e548559 100644 --- a/mumd/Cargo.toml +++ b/mumd/Cargo.toml @@ -23,6 +23,9 @@ bytes = "0.5" cpal = "0.13" dasp_interpolate = { version = "0.11", features = ["linear"] } dasp_signal = "0.11" +dasp_frame = "0.11" +dasp_sample = "0.11" +dasp_ring_buffer = "0.11" futures = "0.3" futures-util = "0.3" hound = "3.4" -- cgit v1.2.1 From ee13c36868f08203d548c3221300651c5108b8a9 Mon Sep 17 00:00:00 2001 From: Eskil Q Date: Fri, 1 Jan 2021 14:33:19 +0100 Subject: update to use tokio 1.0 --- mumd/Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'mumd/Cargo.toml') diff --git a/mumd/Cargo.toml b/mumd/Cargo.toml index caf1a9b..101e614 100644 --- a/mumd/Cargo.toml +++ b/mumd/Cargo.toml @@ -37,6 +37,7 @@ openssl = { version = "0.10" } opus = "0.2" serde = { version = "1.0", features = ["derive"] } tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "net", "time"] } +tokio-stream = "0.1.0" tokio-native-tls = "0.3" tokio-util = { version = "0.6", features = ["codec", "net"] } -- cgit v1.2.1 From 5cdac93a475b4402680ac8d274677f4ba29b1e25 Mon Sep 17 00:00:00 2001 From: Eskil Q Date: Sat, 2 Jan 2021 08:42:52 +0100 Subject: add OpusEncoder stream --- mumd/Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'mumd/Cargo.toml') diff --git a/mumd/Cargo.toml b/mumd/Cargo.toml index 101e614..d12cec2 100644 --- a/mumd/Cargo.toml +++ b/mumd/Cargo.toml @@ -19,6 +19,7 @@ notifications = ["libnotify"] mumlib = { version = "0.3", path = "../mumlib" } argparse = "0.2" +async-stream = "0.3.0" cpal = "0.13" bytes = "1.0" dasp_interpolate = { version = "0.11", features = ["linear"] } -- cgit v1.2.1 From 6e07c2bc4bba206e15bbe8838a322a5c506be9a1 Mon Sep 17 00:00:00 2001 From: Eskil Q Date: Sat, 2 Jan 2021 15:05:52 +0100 Subject: remove deps and make noise gate more efficent --- mumd/Cargo.toml | 2 -- 1 file changed, 2 deletions(-) (limited to 'mumd/Cargo.toml') diff --git a/mumd/Cargo.toml b/mumd/Cargo.toml index d12cec2..d13bdc8 100644 --- a/mumd/Cargo.toml +++ b/mumd/Cargo.toml @@ -18,8 +18,6 @@ notifications = ["libnotify"] [dependencies] mumlib = { version = "0.3", path = "../mumlib" } -argparse = "0.2" -async-stream = "0.3.0" cpal = "0.13" bytes = "1.0" dasp_interpolate = { version = "0.11", features = ["linear"] } -- cgit v1.2.1 From 49f4b7a7158f768e5bd04047b44b759f84529036 Mon Sep 17 00:00:00 2001 From: Eskil Q Date: Mon, 4 Jan 2021 15:47:48 +0100 Subject: bump mumble-protocol to 0.4.1 --- mumd/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mumd/Cargo.toml') diff --git a/mumd/Cargo.toml b/mumd/Cargo.toml index d13bdc8..0f5edb1 100644 --- a/mumd/Cargo.toml +++ b/mumd/Cargo.toml @@ -30,7 +30,7 @@ futures-util = "0.3" hound = "3.4" ipc-channel = "0.14" log = "0.4" -mumble-protocol = "0.4.0" +mumble-protocol = "0.4.1" native-tls = "0.2" openssl = { version = "0.10" } opus = "0.2" -- cgit v1.2.1