From 10dc7abeb4d4d9df7cb2e1465279ac264d432cf3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Apr 2026 20:53:19 +0000 Subject: [PATCH] chore(deps): Bump cranelift-control in /wasm-build Bumps [cranelift-control](https://github.com/bytecodealliance/wasmtime) from 0.130.1 to 0.131.0. - [Release notes](https://github.com/bytecodealliance/wasmtime/releases) - [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/RELEASES.md) - [Commits](https://github.com/bytecodealliance/wasmtime/commits) --- updated-dependencies: - dependency-name: cranelift-control dependency-version: 0.131.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- wasm-build/Cargo.lock | 13 +++++++++++-- wasm-build/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/wasm-build/Cargo.lock b/wasm-build/Cargo.lock index f81c490..b863a37 100644 --- a/wasm-build/Cargo.lock +++ b/wasm-build/Cargo.lock @@ -65,7 +65,7 @@ name = "cranelift-bridge" version = "0.1.0" dependencies = [ "cranelift-codegen", - "cranelift-control", + "cranelift-control 0.131.0", "cranelift-frontend", "target-lexicon", ] @@ -82,7 +82,7 @@ dependencies = [ "cranelift-bitset", "cranelift-codegen-meta", "cranelift-codegen-shared", - "cranelift-control", + "cranelift-control 0.130.1", "cranelift-entity", "cranelift-isle", "gimli", @@ -124,6 +124,15 @@ dependencies = [ "arbitrary", ] +[[package]] +name = "cranelift-control" +version = "0.131.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "498dc1f17a6910c88316d49c7176d8fa97cf10c30859c32a266040449317f963" +dependencies = [ + "arbitrary", +] + [[package]] name = "cranelift-entity" version = "0.130.1" diff --git a/wasm-build/Cargo.toml b/wasm-build/Cargo.toml index faf5989..9f1c157 100644 --- a/wasm-build/Cargo.toml +++ b/wasm-build/Cargo.toml @@ -9,7 +9,7 @@ crate-type = ["cdylib"] [dependencies] cranelift-codegen = { version = "0.130", default-features = false, features = ["std", "x86", "arm64"] } cranelift-frontend = "0.130" -cranelift-control = "0.130" +cranelift-control = "0.131" target-lexicon = "0.13" [profile.release]