From a2df80f92e97aa6395cc59d3d333407b5a15428c Mon Sep 17 00:00:00 2001 From: messense Date: Mon, 23 Jan 2023 16:51:11 +0800 Subject: [PATCH] Update wasmtime dependency version to 5.0.0 Changes: https://github.com/bytecodealliance/wasmtime-py/compare/4.0.0...5.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 b0fc073f0..ab2f2f2f5 100644 --- a/src/build_context.rs +++ b/src/build_context.rs @@ -130,7 +130,7 @@ fn bin_wasi_helper( // Having the wasmtime version hardcoded is not ideal, it's easy enough to overwrite metadata21 .requires_dist - .push("wasmtime>=4.0.0,<5.0.0".to_string()); + .push("wasmtime>=5.0.0,<6.0.0".to_string()); } Ok(metadata21) diff --git a/tests/run.rs b/tests/run.rs index 3330b7493..0acaead77 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/4.0.0/#files +// Sourced from https://pypi.org/project/wasmtime/5.0.0/#files // update with wasmtime updates #[cfg(any( all(target_os = "windows", target_arch = "x86_64"),