From 4de7c9eabfd0ccdc3e65357de206b3b584aa7af9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Jan 2026 08:51:38 +0000 Subject: [PATCH 1/2] Bump intrusive-collections from 0.9.7 to 0.10.0 Bumps [intrusive-collections](https://github.com/Amanieu/intrusive-rs) from 0.9.7 to 0.10.0. - [Commits](https://github.com/Amanieu/intrusive-rs/commits) --- updated-dependencies: - dependency-name: intrusive-collections dependency-version: 0.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7ac8f61d800..90b7f89761a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2487,9 +2487,9 @@ dependencies = [ [[package]] name = "intrusive-collections" -version = "0.9.7" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "189d0897e4cbe8c75efedf3502c18c887b05046e59d28404d4d8e46cbc4d1e86" +checksum = "ec0375b6b871e424e9e052e1107d57dc6952f77ff882bd4bf74333a833779bab" dependencies = [ "memoffset", ] diff --git a/Cargo.toml b/Cargo.toml index 8113810e150..9dc9a2ac673 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -121,7 +121,7 @@ itertools = { version = "0.14.0", default-features = false } portable-atomic = "1.13.0" bytemuck = { version = "1.24.0", default-features = false } arrayvec = "0.7.6" -intrusive-collections = "0.9.7" +intrusive-collections = "0.10.0" cfg-if = "1.0.4" either = "1.15.0" sys-locale = "0.3.2" From 14c95d0610fd306b29cd8c12b81a58917bbd0051 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juli=C3=A1n=20Espina=20Del=20=C3=81ngel?= Date: Fri, 23 Jan 2026 17:06:10 -0600 Subject: [PATCH 2/2] fix breaking change --- core/engine/src/builtins/atomics/futex.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/engine/src/builtins/atomics/futex.rs b/core/engine/src/builtins/atomics/futex.rs index 3718c6aa20e..6d8d3972843 100644 --- a/core/engine/src/builtins/atomics/futex.rs +++ b/core/engine/src/builtins/atomics/futex.rs @@ -211,7 +211,7 @@ impl fmt::Debug for FutexWaiter { } } -intrusive_adapter!(FutexWaiterAdapter = UnsafeRef: FutexWaiter { link: LinkedListLink }); +intrusive_adapter!(FutexWaiterAdapter = UnsafeRef: FutexWaiter { link => LinkedListLink }); impl FutexWaiter { /// Creates a new `FutexWaiter` that will block the current thread while waiting.