diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 91609e8..42ad6ac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -361,9 +361,9 @@ jobs: with: toolchain: nightly default: true - target: wasm32-wasi + target: wasm32-wasip1 - run: | curl -Lf https://github.com/bytecodealliance/wasmtime/releases/download/v24.0.0/wasmtime-v24.0.0-x86_64-linux.tar.xz | tar xJf - -C ${{ runner.tool_cache }} echo "${{ runner.tool_cache }}/wasmtime-v24.0.0-x86_64-linux" >> $GITHUB_PATH - echo "CARGO_TARGET_WASM32_WASI_RUNNER=wasmtime run --" >> $GITHUB_ENV - - run: cargo test --target wasm32-wasi --all -- --nocapture + echo "CARGO_TARGET_WASM32_WASIP1_RUNNER=wasmtime run --" >> $GITHUB_ENV + - run: cargo test --target wasm32-wasip1 --all -- --nocapture diff --git a/psm/Cargo.toml b/psm/Cargo.toml index bb27700..0f75bdf 100644 --- a/psm/Cargo.toml +++ b/psm/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "psm" -version = "0.1.23" +version = "0.1.24" authors = ["Simonas Kazlauskas "] build = "build.rs" description = "Portable Stack Manipulation: stack manipulation and introspection routines" keywords = ["stack", "no_std"] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/stacker/" -documentation = "https://docs.rs/psm/0.1.22" +documentation = "https://docs.rs/psm/0.1.24" readme = "README.mkd" [dependencies]