diff --git a/Cargo.lock b/Cargo.lock index 0ce513287c..114e632f6a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2405,9 +2405,9 @@ dependencies = [ [[package]] name = "regalloc2" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69025b4a161879ba90719837c06621c3d73cffa147a000aeacf458f6a9572485" +checksum = "91b2eab54204ea0117fe9a060537e0b07a4e72f7c7d182361ecc346cab2240e5" dependencies = [ "fxhash", "log", diff --git a/cranelift/codegen/Cargo.toml b/cranelift/codegen/Cargo.toml index 9d170e0364..169b58846f 100644 --- a/cranelift/codegen/Cargo.toml +++ b/cranelift/codegen/Cargo.toml @@ -26,7 +26,7 @@ serde = { version = "1.0.94", features = ["derive"], optional = true } bincode = { version = "1.2.1", optional = true } gimli = { workspace = true, features = ["write"], optional = true } smallvec = { workspace = true } -regalloc2 = { version = "0.4.1", features = ["checker"] } +regalloc2 = { version = "0.4.2", features = ["checker"] } souper-ir = { version = "2.1.0", optional = true } sha2 = { version = "0.10.2", optional = true } # It is a goal of the cranelift-codegen crate to have minimal external dependencies. diff --git a/supply-chain/audits.toml b/supply-chain/audits.toml index e9e2af8788..19645904af 100644 --- a/supply-chain/audits.toml +++ b/supply-chain/audits.toml @@ -241,6 +241,15 @@ Contains unsafe blocks but are encapsulated and required for the operation at hand. """ +[[audits.memory_units]] +who = "Alex Crichton " +criteria = "safe-to-run" +delta = "0.3.0 -> 0.4.0" +notes = """ +This bump only changed from a function to an associated `const` and trivially +contains no significant changes. +""" + [[audits.openvino]] who = "Matthew Tamayo-Rios " criteria = "safe-to-deploy" @@ -265,15 +274,6 @@ notes = """ Only updates to tests to use new rust functions for mut pointers. """ -[[audits.memory_units]] -who = "Alex Crichton " -criteria = "safe-to-run" -delta = "0.3.0 -> 0.4.0" -notes = """ -This bump only changed from a function to an associated `const` and trivially -contains no significant changes. -""" - [[audits.peeking_take_while]] who = "Nick Fitzgerald " criteria = "safe-to-deploy" @@ -298,6 +298,12 @@ criteria = "safe-to-deploy" delta = "0.4.0 -> 0.4.1" notes = "The Bytecode Alliance is the author of this crate." +[[audits.regalloc2]] +who = "Nick Fitzgerald " +criteria = "safe-to-deploy" +delta = "0.4.1 -> 0.4.2" +notes = "The Bytecode Alliance is the author of this crate." + [[audits.rustc-demangle]] who = "Alex Crichton " criteria = "safe-to-deploy" diff --git a/winch/codegen/Cargo.toml b/winch/codegen/Cargo.toml index b6c1a9e46e..73f380c408 100644 --- a/winch/codegen/Cargo.toml +++ b/winch/codegen/Cargo.toml @@ -16,7 +16,7 @@ target-lexicon = { workspace = true, features = ["std"] } # In the next iteration we'll factor out the common bits so that they can be consumed # by Cranelift and Winch. cranelift-codegen = { workspace = true } -regalloc2 = "0.4.1" +regalloc2 = "0.4.2" [features] x64 = ["cranelift-codegen/x86"]