From 6bcaf74d3ef7fc2bb1f9b2b28eb7c28572a6b3d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 06:06:34 +0000 Subject: [PATCH] chore(deps): bump the cargo-dependencies group with 8 updates Updates the requirements on [cpal](https://github.com/RustAudio/cpal), [toml](https://github.com/toml-rs/toml), [dirs](https://github.com/soc/dirs-rs), [sysinfo](https://github.com/GuillaumeGomez/sysinfo), [thiserror](https://github.com/dtolnay/thiserror), [rand](https://github.com/rust-random/rand), [arrow](https://github.com/apache/arrow-rs) and [libloading](https://github.com/nagisa/rust_libloading) to permit the latest version. Updates `cpal` to 0.17.3 - [Release notes](https://github.com/RustAudio/cpal/releases) - [Changelog](https://github.com/RustAudio/cpal/blob/master/CHANGELOG.md) - [Commits](https://github.com/RustAudio/cpal/compare/v0.15.0...v0.17.3) Updates `toml` to 1.0.3+spec-1.1.0 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.0...toml-v1.0.3) Updates `dirs` to 6.0.0 - [Commits](https://github.com/soc/dirs-rs/commits) Updates `sysinfo` to 0.38.0 - [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/main/CHANGELOG.md) - [Commits](https://github.com/GuillaumeGomez/sysinfo/compare/v0.32.0...v0.38.0) Updates `thiserror` to 2.0.18 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.0...2.0.18) Updates `rand` to 0.10.0 - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.0...0.10.0) Updates `arrow` to 58.0.0 - [Release notes](https://github.com/apache/arrow-rs/releases) - [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/apache/arrow-rs/compare/54.2.1...58.0.0) Updates `libloading` to 0.9.0 - [Commits](https://github.com/nagisa/rust_libloading/compare/0.8.0...0.9.0) --- updated-dependencies: - dependency-name: cpal dependency-version: 0.17.3 dependency-type: direct:production dependency-group: cargo-dependencies - dependency-name: toml dependency-version: 1.0.3+spec-1.1.0 dependency-type: direct:production dependency-group: cargo-dependencies - dependency-name: dirs dependency-version: 6.0.0 dependency-type: direct:production dependency-group: cargo-dependencies - dependency-name: sysinfo dependency-version: 0.38.0 dependency-type: direct:production dependency-group: cargo-dependencies - dependency-name: thiserror dependency-version: 2.0.18 dependency-type: direct:production dependency-group: cargo-dependencies - dependency-name: rand dependency-version: 0.10.0 dependency-type: direct:production dependency-group: cargo-dependencies - dependency-name: arrow dependency-version: 58.0.0 dependency-type: direct:production dependency-group: cargo-dependencies - dependency-name: libloading dependency-version: 0.9.0 dependency-type: direct:production dependency-group: cargo-dependencies ... Signed-off-by: dependabot[bot] --- Cargo.toml | 12 ++++++------ mofa-dora-bridge/Cargo.toml | 4 ++-- mofa-studio-shell/Cargo.toml | 2 +- mofa-ui/Cargo.toml | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 04e3f381..c98e28a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ license = "Apache-2.0" makepad-widgets = { git = "https://github.com/wyeworks/makepad", rev = "53b2e5c84" } # Audio -cpal = "0.15" +cpal = "0.17" # Async runtime tokio = { version = "1", features = ["full", "sync"] } @@ -29,18 +29,18 @@ parking_lot = "0.12" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_yaml = "0.9" -toml = "0.8" +toml = "1.0" log = "0.4" env_logger = "0.11" -dirs = "5.0" -sysinfo = "0.32" +dirs = "6.0" +sysinfo = "0.38" crossbeam-channel = "0.5" once_cell = "1.19" -thiserror = "1.0" +thiserror = "2.0" anyhow = "1.0" tracing = "0.1" uuid = { version = "1.0", features = ["v4"] } -rand = "0.8" +rand = "0.10" # Dora - robotics framework for voice chat architecture dora-node-api = "0.4.1" diff --git a/mofa-dora-bridge/Cargo.toml b/mofa-dora-bridge/Cargo.toml index dc17e36a..11c53e5c 100644 --- a/mofa-dora-bridge/Cargo.toml +++ b/mofa-dora-bridge/Cargo.toml @@ -36,10 +36,10 @@ uuid.workspace = true rand.workspace = true # Arrow for data extraction (use same version as dora workspace) -arrow = { version = "54.2.1", default-features = false } +arrow = { version = "58.0.0", default-features = false } # Dynamic library loading for native AEC -libloading = "0.8" +libloading = "0.9" # ASR engines (optional, for dynamic ASR bridges) # Removed MLX dependencies for Linux build diff --git a/mofa-studio-shell/Cargo.toml b/mofa-studio-shell/Cargo.toml index 63678979..08168176 100644 --- a/mofa-studio-shell/Cargo.toml +++ b/mofa-studio-shell/Cargo.toml @@ -31,7 +31,7 @@ serde_json.workspace = true log.workspace = true env_logger.workspace = true dirs.workspace = true -sysinfo = "0.32" +sysinfo = "0.38" ctrlc = "3.4" # CLI diff --git a/mofa-ui/Cargo.toml b/mofa-ui/Cargo.toml index ea61781b..54ca93d9 100644 --- a/mofa-ui/Cargo.toml +++ b/mofa-ui/Cargo.toml @@ -9,7 +9,7 @@ makepad-widgets.workspace = true mofa-dora-bridge = { path = "../mofa-dora-bridge" } mofa-widgets = { path = "../mofa-widgets" } parking_lot.workspace = true -sysinfo = "0.32" +sysinfo = "0.38" log.workspace = true # Audio device management cpal.workspace = true