diff --git a/adapters/ab5a448/wasi_snapshot_preview1.command.wasm b/adapters/ab5a448/wasi_snapshot_preview1.command.wasm new file mode 100644 index 00000000..de91691a Binary files /dev/null and b/adapters/ab5a448/wasi_snapshot_preview1.command.wasm differ diff --git a/adapters/ab5a448/wasi_snapshot_preview1.reactor.wasm b/adapters/ab5a448/wasi_snapshot_preview1.reactor.wasm new file mode 100644 index 00000000..c76d0e06 Binary files /dev/null and b/adapters/ab5a448/wasi_snapshot_preview1.reactor.wasm differ diff --git a/build.rs b/build.rs index 9f4a2a80..ab3b0d4d 100644 --- a/build.rs +++ b/build.rs @@ -1,6 +1,6 @@ use std::{path::Path, process::Command}; -const WASI_ADAPTER_VERSION: &str = "6613acd"; +const WASI_ADAPTER_VERSION: &str = "ab5a448"; fn main() { println!("cargo:rerun-if-changed=build.rs"); diff --git a/tests/run.rs b/tests/run.rs index fa98d3f6..64137294 100644 --- a/tests/run.rs +++ b/tests/run.rs @@ -53,7 +53,7 @@ fn it_runs_with_reactor_component() -> Result<()> { fs::write( project.root().join("wit/deps/cli/run.wit"), " -package wasi:cli@0.2.0-rc-2023-12-05; +package wasi:cli@0.2.0; interface run { run: func() -> result; @@ -66,7 +66,7 @@ interface run { package my:reactor; world generator { - export wasi:cli/run@0.2.0-rc-2023-12-05; + export wasi:cli/run@0.2.0; }", )?;