From bc3a1271f4b7066422bdf18bbedba35ba5c67d8b Mon Sep 17 00:00:00 2001 From: messense Date: Tue, 28 Mar 2023 11:16:01 +0800 Subject: [PATCH] Update wasmtime dependency version to 7.0.0 https://github.com/bytecodealliance/wasmtime-py/compare/6.0.0...7.0.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 1db67a54a..4a50ee0cb 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("wasmtime>=6.0.0,<7.0.0".to_string()); + .push("wasmtime>=7.0.0,<8.0.0".to_string()); } Ok(metadata21) diff --git a/tests/run.rs b/tests/run.rs index 5e35d49c0..ed5a63ab5 100644 --- a/tests/run.rs +++ b/tests/run.rs @@ -331,7 +331,7 @@ fn integration_with_data() { } #[test] -// Sourced from https://pypi.org/project/wasmtime/6.0.0/#files +// Sourced from https://pypi.org/project/wasmtime/7.0.0/#files // update with wasmtime updates #[cfg(any( all(target_os = "windows", target_arch = "x86_64"),