From 22181d0819cd2ef6abd5030f33339c6175273212 Mon Sep 17 00:00:00 2001 From: Chris Fallin Date: Tue, 18 Aug 2020 09:42:46 -0700 Subject: [PATCH] Use regalloc 0.0.30. This upgrade pulls in one memory-allocation reduction improvement (bytecodealliance/regalloc.rs#95). There should be no change in behavior as a result of this. --- Cargo.lock | 4 ++-- cranelift/codegen/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9e19c67c2e..a31ce0605e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1715,9 +1715,9 @@ dependencies = [ [[package]] name = "regalloc" -version = "0.0.29" +version = "0.0.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c178c51068338acd359c6e1ed356fcffe6b6cb3c162f68f70e251ca29bfe0eba" +checksum = "2041c2d34f6ff346d6f428974f03d8bf12679b0c816bb640dc5eb1d48848d8d1" dependencies = [ "log", "rustc-hash", diff --git a/cranelift/codegen/Cargo.toml b/cranelift/codegen/Cargo.toml index 88ad9ba0c7..cc9e4421ea 100644 --- a/cranelift/codegen/Cargo.toml +++ b/cranelift/codegen/Cargo.toml @@ -28,7 +28,7 @@ byteorder = { version = "1.3.2", default-features = false } peepmatic = { path = "../peepmatic", optional = true, version = "0.66.0" } peepmatic-traits = { path = "../peepmatic/crates/traits", optional = true, version = "0.66.0" } peepmatic-runtime = { path = "../peepmatic/crates/runtime", optional = true, version = "0.66.0" } -regalloc = "0.0.29" +regalloc = "0.0.30" wast = { version = "22.0.0", optional = true } # It is a goal of the cranelift-codegen crate to have minimal external dependencies. # Please don't add any unless they are essential to the task of creating binary