From 0c9989180fad7463b62e1a1b07467995fa5d207a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 23 Aug 2026 17:17:59 +0000 Subject: [PATCH] build(deps): bump rusty_alloc from 0.3.2 to 0.7.0 Bumps [rusty_alloc](https://github.com/remade-with-rust/rusty_alloc) from 0.3.2 to 0.7.0. - [Release notes](https://github.com/remade-with-rust/rusty_alloc/releases) - [Commits](https://github.com/remade-with-rust/rusty_alloc/commits/v0.7.0) --- updated-dependencies: - dependency-name: rusty_alloc dependency-version: 0.4.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 +++++++++++++--- crates/ffai-cli/Cargo.toml | 2 +- crates/ffai-diana/Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c779f09..8a54e7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1236,7 +1236,7 @@ dependencies = [ "ffai-mercury", "ffai-models", "mimalloc", - "rusty_alloc", + "rusty_alloc 0.7.0", "rusty_alloc-api", ] @@ -1276,7 +1276,7 @@ dependencies = [ "libmimalloc-sys", "mimalloc", "rayon", - "rusty_alloc", + "rusty_alloc 0.7.0", "rusty_alloc-api", "serde", "serde_json", @@ -3835,13 +3835,23 @@ dependencies = [ "windows-sys 0.60.2", ] +[[package]] +name = "rusty_alloc" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e01df3b628720d7e9a442cec703c266e7344a44467a78811a63b372b09d0691" +dependencies = [ + "libc", + "windows-sys 0.60.2", +] + [[package]] name = "rusty_alloc-api" version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "65c8c3ecd14424ba980d005147945a745836dea7798d447c419e08be1f79e88f" dependencies = [ - "rusty_alloc", + "rusty_alloc 0.3.2", ] [[package]] diff --git a/crates/ffai-cli/Cargo.toml b/crates/ffai-cli/Cargo.toml index ee5ae8e..a8258af 100644 --- a/crates/ffai-cli/Cargo.toml +++ b/crates/ffai-cli/Cargo.toml @@ -54,7 +54,7 @@ mimalloc = { version = "0.1", default-features = false, optional = true } rusty_alloc-api = "=0.3.2" # The core, for `alloc::collect` — see `spawn_page_trimmer` in main.rs. # Without it rusty_alloc's RSS does not bound on a rayon pool. -rusty_alloc = "=0.3.2" +rusty_alloc = "=0.7.0" clap = { workspace = true } [features] diff --git a/crates/ffai-diana/Cargo.toml b/crates/ffai-diana/Cargo.toml index 2213aa3..9838704 100644 --- a/crates/ffai-diana/Cargo.toml +++ b/crates/ffai-diana/Cargo.toml @@ -69,7 +69,7 @@ libmimalloc-sys = { version = "0.1", default-features = false } rusty_alloc-api = "=0.3.2" # The core, for `alloc::collect` — the reclaim `examples/scaling.rs` drives. # `rusty_alloc-api` deliberately exposes collect only per-`Heap`. -rusty_alloc = "=0.3.2" +rusty_alloc = "=0.7.0" ffai-media = { workspace = true } ffai-bench = { workspace = true }