From 92362fbd2ed318086e35e623fcfa0743fde9ab01 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 9 Aug 2026 06:32:58 +0000 Subject: [PATCH] build(deps): bump decibri from 5.0.0 to 6.0.0 Bumps [decibri](https://github.com/decibri/decibri) from 5.0.0 to 6.0.0. - [Release notes](https://github.com/decibri/decibri/releases) - [Changelog](https://github.com/decibri/decibri/blob/main/CHANGELOG.md) - [Commits](https://github.com/decibri/decibri/compare/npm-v5.0.0...crate-v6.0.0) --- updated-dependencies: - dependency-name: decibri dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 38 ++++++++++++++------------------------ Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 25 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 66152ea..c9740de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -321,12 +321,13 @@ checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f" [[package]] name = "decibri" -version = "5.0.0" +version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9090b5074e27aa0cabb3d4501a760bfe1b1a34c1177d9ada1f3166468161a9a1" +checksum = "1539b77ff64d63648295e03777bfdac1c44a69cbf71e8122d10c5eb4846aa2aa" dependencies = [ "cpal", "crossbeam-channel", + "decibri-decode", "decibri-resampler", "thiserror 2.0.18", ] @@ -351,14 +352,22 @@ dependencies = [ "tempfile", ] +[[package]] +name = "decibri-decode" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "785556f9c41ee9126329eec985e7e8274879fbe81dca551cd9afa77b094f9585" +dependencies = [ + "decibri-resampler", +] + [[package]] name = "decibri-resampler" -version = "0.2.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2021658007fe9fa58b0fe7b4feb0f89c0ad3ffdd43d311c8cdef58dc7178fb7f" +checksum = "83e7ba28719e4975f1b2ee6fc544a2ca97a8e0e1e7aa0349f33646af6500d5c2" dependencies = [ "thiserror 2.0.18", - "tracing", ] [[package]] @@ -1136,25 +1145,6 @@ dependencies = [ "winnow", ] -[[package]] -name = "tracing" -version = "0.1.44" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" -dependencies = [ - "pin-project-lite", - "tracing-core", -] - -[[package]] -name = "tracing-core" -version = "0.1.36" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" -dependencies = [ - "once_cell", -] - [[package]] name = "ucd-trie" version = "0.1.7" diff --git a/Cargo.toml b/Cargo.toml index 11d9744..629eedd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ name = "decibri" path = "src/main.rs" [dependencies] -decibri = { version = "5.0.0", default-features = false, features = ["capture", "playback", "gain"] } +decibri = { version = "6.0.0", default-features = false, features = ["capture", "playback", "gain"] } clap = { version = "4.5", features = ["derive", "wrap_help"] } clap_complete = "4.5" comfy-table = "7"