From 9d5f7275d655799eb8ca887e3016bde474fc90dc Mon Sep 17 00:00:00 2001 From: messense Date: Sat, 12 Aug 2023 17:32:07 +0800 Subject: [PATCH] Update wasmtime dependency version to 11.0 --- src/build_context.rs | 2 +- tests/run.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/build_context.rs b/src/build_context.rs index c4051d0b5..91d27b4e4 100644 --- a/src/build_context.rs +++ b/src/build_context.rs @@ -133,7 +133,7 @@ fn bin_wasi_helper( // Having the wasmtime version hardcoded is not ideal, it's easy enough to overwrite metadata21 .requires_dist - .push(Requirement::from_str("wasmtime>=7.0.0,<8.0.0").unwrap()); + .push(Requirement::from_str("wasmtime>=11.0.0,<12.0.0").unwrap()); } Ok(metadata21) diff --git a/tests/run.rs b/tests/run.rs index c0c105a89..3c0a2e4d4 100644 --- a/tests/run.rs +++ b/tests/run.rs @@ -353,7 +353,7 @@ fn integration_with_data() { } #[test] -// Sourced from https://pypi.org/project/wasmtime/7.0.0/#files +// Sourced from https://pypi.org/project/wasmtime/11.0.0/#files // update with wasmtime updates #[cfg(any( all(target_os = "windows", target_arch = "x86_64"),