From b51e8250c1eeef6bc4aa0629cad989d7473b070b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 18:24:48 +0000 Subject: [PATCH] chore(deps): update wasmtime requirement from 45.0 to 46.0 Updates the requirements on [wasmtime](https://github.com/bytecodealliance/wasmtime) to permit the latest version. - [Release notes](https://github.com/bytecodealliance/wasmtime/releases) - [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/RELEASES.md) - [Commits](https://github.com/bytecodealliance/wasmtime/compare/v45.0.0...v46.0.0) --- updated-dependencies: - dependency-name: wasmtime dependency-version: 46.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- loom-core/Cargo.toml | 2 +- loom-testing/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/loom-core/Cargo.toml b/loom-core/Cargo.toml index 965b220..d5fed18 100644 --- a/loom-core/Cargo.toml +++ b/loom-core/Cargo.toml @@ -42,7 +42,7 @@ rayon = "1" [dev-dependencies] proptest = { workspace = true } criterion = "0.8" -wasmtime = "45.0" +wasmtime = "46.0" [features] # Default features - verification enabled for safety diff --git a/loom-testing/Cargo.toml b/loom-testing/Cargo.toml index 6ed0f6f..120b93d 100644 --- a/loom-testing/Cargo.toml +++ b/loom-testing/Cargo.toml @@ -21,7 +21,7 @@ rand = "0.8" loom-core = { path = "../loom-core" } # Optional runtime dependencies (not available for wasm targets) -wasmtime = { version = "45.0", optional = true } +wasmtime = { version = "46.0", optional = true } tempfile = { version = "3.8", optional = true } which = { version = "8.0", optional = true } glob = { version = "0.3", optional = true }