diff --git a/Cargo.standalone.toml b/Cargo.standalone.toml index e07230b..bee0194 100644 --- a/Cargo.standalone.toml +++ b/Cargo.standalone.toml @@ -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" @@ -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 } diff --git a/cargo-standalone.sh b/cargo-standalone.sh index 1910502..5212e05 100755 --- a/cargo-standalone.sh +++ b/cargo-standalone.sh @@ -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