From 354e8eef80abc4a70ac56402764b649e8014aedd Mon Sep 17 00:00:00 2001 From: Simonas Kazlauskas Date: Wed, 13 Nov 2024 13:12:02 +0200 Subject: [PATCH 1/2] fix wasi test --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 From 4e1e54d7c0047c27fcff45873e81d93e15c239ed Mon Sep 17 00:00:00 2001 From: Simonas Kazlauskas Date: Wed, 13 Nov 2024 13:10:30 +0200 Subject: [PATCH 2/2] psm: release 0.1.24 --- psm/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]