From 868de5f35d458a1360ad9a4654648a44c15f7bc7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 9 Sep 2026 20:43:00 +0000 Subject: [PATCH] deps(deps): bump rubato from 3.0.0 to 5.0.0 Bumps [rubato](https://github.com/HEnquist/rubato) from 3.0.0 to 5.0.0. - [Release notes](https://github.com/HEnquist/rubato/releases) - [Commits](https://github.com/HEnquist/rubato/compare/v3.0.0...v5.0.0) --- updated-dependencies: - dependency-name: rubato dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 38 ++++++++++++++++-------------------- crates/audio-core/Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8de1671..21061e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -178,6 +178,12 @@ version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" +[[package]] +name = "audio-codec-algorithms" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1254ebf6529f3763c491acfb5ab6e960809e3c75a38584cc664f8c5667fb7107" + [[package]] name = "audio-core" version = "0.1.0" @@ -201,12 +207,6 @@ dependencies = [ "whisper-rs", ] -[[package]] -name = "audio-core" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f93ebbf82d06013f4c41fe71303feb980cddd78496d904d06be627972de51a24" - [[package]] name = "audio-protocol" version = "0.1.0" @@ -218,19 +218,15 @@ dependencies = [ [[package]] name = "audioadapter" -version = "3.0.0" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91f87b70b051c5866680ad79f6743a42ccab264c009d1a71f4d33a3872ae60c8" -dependencies = [ - "audio-core 0.2.1", - "num-traits", -] +checksum = "d1292ef9edf681b7426ed089004b021a42896492f58bd0c909ad44e5faec9ac4" [[package]] name = "audioadapter-buffers" -version = "3.0.0" +version = "5.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9097d67933fb083d382ce980430afdb758aada60846010aee6be068c06cef0ca" +checksum = "46289a81a3bfa26d0f8b2415f8ca9decde9a66308a150568af5c102381b3c8ce" dependencies = [ "audioadapter", "audioadapter-sample", @@ -239,11 +235,11 @@ dependencies = [ [[package]] name = "audioadapter-sample" -version = "3.0.0" +version = "5.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34ab94f2bc04a14e1f49ee5f222f66460e8a1b51627bdfedf34eed394d747938" +checksum = "5258faecf4edbe35ec483bda9b1f7438e6b391891819269c6b5461aeaa0e8d7d" dependencies = [ - "audio-core 0.2.1", + "audio-codec-algorithms", "num-traits", ] @@ -3747,7 +3743,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf" dependencies = [ "anyhow", - "itertools 0.13.0", + "itertools 0.14.0", "proc-macro2", "quote", "syn 2.0.119", @@ -4127,9 +4123,9 @@ dependencies = [ [[package]] name = "rubato" -version = "3.0.0" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4be9c88e3d722d3d36939e41941f6b6f52810c1235bf19998a7d4535b402892" +checksum = "a7cb1ffaf8738df50aab642a7f6465df81c6ba9e2818268053487165298114be" dependencies = [ "audioadapter", "audioadapter-buffers", @@ -5244,7 +5240,7 @@ version = "0.1.0" dependencies = [ "anyhow", "async-stream", - "audio-core 0.1.0", + "audio-core", "axum", "chrono", "clap", diff --git a/crates/audio-core/Cargo.toml b/crates/audio-core/Cargo.toml index 20ac98f..fb5092e 100644 --- a/crates/audio-core/Cargo.toml +++ b/crates/audio-core/Cargo.toml @@ -23,7 +23,7 @@ cpal = "0.18.1" ringbuf = "0.5.0" ort = { version = "2.0.0-rc.12", features = ["load-dynamic"] } ndarray = "0.17.2" -rubato = "3.0.0" +rubato = "5.0.0" ureq = { version = "3.3.0", features = ["json"] } tungstenite = { version = "0.30.0", features = ["native-tls"] } base64 = "0.23.1"