From c91da0fbbee8ba11837a6ca92fe011375cd2b523 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 23 Aug 2026 17:18:00 +0000 Subject: [PATCH] build(deps): bump rusty_alloc-api from 0.3.2 to 0.7.0 Bumps [rusty_alloc-api](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-api dependency-version: 0.4.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 +++++++++++++++----- crates/ffai-carmenta-wasm/Cargo.toml | 2 +- crates/ffai-carmenta/Cargo.toml | 2 +- crates/ffai-cli/Cargo.toml | 2 +- crates/ffai-diana/Cargo.toml | 2 +- crates/ffai-wasm/Cargo.toml | 2 +- 6 files changed, 20 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c779f09..fca78ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1236,7 +1236,7 @@ dependencies = [ "ffai-mercury", "ffai-models", "mimalloc", - "rusty_alloc", + "rusty_alloc 0.3.2", "rusty_alloc-api", ] @@ -1276,7 +1276,7 @@ dependencies = [ "libmimalloc-sys", "mimalloc", "rayon", - "rusty_alloc", + "rusty_alloc 0.3.2", "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" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65c8c3ecd14424ba980d005147945a745836dea7798d447c419e08be1f79e88f" +checksum = "f8f27c9bd0d144c364c686579bdb746cbf798b1354552985ff5f39edd8a6cb2c" dependencies = [ - "rusty_alloc", + "rusty_alloc 0.7.0", ] [[package]] diff --git a/crates/ffai-carmenta-wasm/Cargo.toml b/crates/ffai-carmenta-wasm/Cargo.toml index c6fa1be..a4270b9 100644 --- a/crates/ffai-carmenta-wasm/Cargo.toml +++ b/crates/ffai-carmenta-wasm/Cargo.toml @@ -33,7 +33,7 @@ serde-wasm-bindgen = "0.6" # rusty_alloc at parity with dlmalloc on Diana's workload. Carmenta's # allocation pattern is different (many small line crops rather than one big # tensor chain), so the answer here is its own open measurement. -rusty_alloc-api = { version = "=0.3.2", optional = true } +rusty_alloc-api = { version = "=0.7.0", optional = true } [features] default = ["rusty-alloc"] diff --git a/crates/ffai-carmenta/Cargo.toml b/crates/ffai-carmenta/Cargo.toml index 3b87b24..b2943be 100644 --- a/crates/ffai-carmenta/Cargo.toml +++ b/crates/ffai-carmenta/Cargo.toml @@ -71,7 +71,7 @@ tokenizers = { version = "0.23", default-features = false, features = ["unstable mimalloc = { version = "0.1", default-features = false } # Superseded as the default by the pure-Rust remake; see the allocator # doc comment in `ffai-cli/src/main.rs` for the measurement. -rusty_alloc-api = "=0.3.2" +rusty_alloc-api = "=0.7.0" ffai-media = { workspace = true } ffai-bench = { workspace = true } diff --git a/crates/ffai-cli/Cargo.toml b/crates/ffai-cli/Cargo.toml index ee5ae8e..f9bdb32 100644 --- a/crates/ffai-cli/Cargo.toml +++ b/crates/ffai-cli/Cargo.toml @@ -51,7 +51,7 @@ mimalloc = { version = "0.1", default-features = false, optional = true } # where 0.3.0, 0.1.0-alpha.1 and 0.1.0-alpha.2 are 0 of 8. A caret requirement # ("0.3.0") silently resolved to 0.3.1 mid-session and shipped a crashing # binary, which is exactly the failure an exact pin exists to prevent. -rusty_alloc-api = "=0.3.2" +rusty_alloc-api = "=0.7.0" # 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" diff --git a/crates/ffai-diana/Cargo.toml b/crates/ffai-diana/Cargo.toml index 2213aa3..0675514 100644 --- a/crates/ffai-diana/Cargo.toml +++ b/crates/ffai-diana/Cargo.toml @@ -66,7 +66,7 @@ libmimalloc-sys = { version = "0.1", default-features = false } # margin the largest single effect in the Diana latency campaign (1.64x), so # it is simultaneously the dependency we most want to drop and the one that # costs the most to drop wrongly. -rusty_alloc-api = "=0.3.2" +rusty_alloc-api = "=0.7.0" # 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" diff --git a/crates/ffai-wasm/Cargo.toml b/crates/ffai-wasm/Cargo.toml index 7946cf0..a2d8e85 100644 --- a/crates/ffai-wasm/Cargo.toml +++ b/crates/ffai-wasm/Cargo.toml @@ -27,7 +27,7 @@ wasm-bindgen = "=0.2.121" # pinned to the installed wasm-bindgen-cli; the two # pre-reservation is disabled there, because wasm `memory.grow` is never # returned to the host). Whether it beats dlmalloc on THIS workload is a # measurement we can now run, which is the point of having a cdylib at all. -rusty_alloc-api = { version = "=0.3.2", optional = true } +rusty_alloc-api = { version = "=0.7.0", optional = true } [features] # `rusty_alloc` is the default; `--no-default-features` leaves the target's own