Skip to content
Merged

Wasm #34

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.standalone.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-napi"
version = "0.701.0"
version = "0.702.0-rc.1"
description = "NAPI library for Wasmer WebAssembly runtime"
edition = "2024"
license = "MIT"
Expand All @@ -23,7 +23,7 @@ anyhow = "1"
# Keep the standalone crates.io build on the 0.701 / 7.1 family. The vendored
# manifest can track local 0.702 / 7.2 path crates, but crates.io 7.2 currently
# requires rustc 1.92 while this standalone workflow is expected to run on 1.91.
wasmer = { version = "=7.1.0" }
wasmer = { version = "=7.2.0-rc.1" }

# This dependencies are ONLY needed for testing napi in Wasm locally
wasmer-cache = { version = "=7.2.0-rc.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion cargo-standalone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ if [[ -f "$repo_root/Cargo.lock" ]]; then
cp "$repo_root/Cargo.lock" "$standalone_work_dir/Cargo.lock"
fi

for entry in build.rs include src tests v8; do
for entry in build.rs include lib src tests v8; do
ln -s "$repo_root/$entry" "$standalone_work_dir/$entry"
done

Expand Down
Loading