Skip to content
Merged
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
20 changes: 10 additions & 10 deletions Cargo.standalone.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-napi"
version = "0.702.0"
version = "0.702.0-rc.1"
description = "NAPI library for Wasmer WebAssembly runtime"
edition = "2024"
license = "MIT"
Expand All @@ -11,8 +11,8 @@ cli = [
"dep:wasmer-wasix",
"dep:wasmer-cache",
"dep:wasmer-compiler-llvm",
"dep:wasmer_c_api",
"wasmer_c_api/llvm",
"dep:wasmer-c-api-imports",
"wasmer-c-api-imports/llvm",
"dep:tokio",
"dep:virtual-fs",
"dep:wasmer-types",
Expand All @@ -23,15 +23,15 @@ 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.2.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", optional = true }
wasmer_c_api = { version = "=7.2.0", optional = true, default-features = false, package = "wasmer-c-api" }
wasmer-compiler-llvm = { version = "=7.2.0", optional = true }
wasmer-types = { version = "=7.2.0", optional = true }
wasmer-wasix = { version = "=0.702.0", optional = true }
virtual-fs = { version = "=0.702.0", optional = true }
wasmer-cache = { version = "=7.2.0-rc.1", optional = true }
wasmer-c-api-imports = { version = "=7.2.0-rc.1", optional = true, default-features = false }
wasmer-compiler-llvm = { version = "=7.2.0-rc.1", optional = true }
wasmer-types = { version = "=7.2.0-rc.1", optional = true }
wasmer-wasix = { version = "=0.702.0-rc.1", optional = true }
virtual-fs = { version = "=0.702.0-rc.1", optional = true }
tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
enum-iterator = "2.3.0"

Expand Down
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-napi"
version = "0.702.0"
version = "0.702.0-rc.1"
description = "NAPI library for Wasmer WebAssembly runtime"
edition = "2024"
license = "MIT"
Expand All @@ -11,8 +11,8 @@ cli = [
"dep:wasmer-wasix",
"dep:wasmer-cache",
"dep:wasmer-compiler-llvm",
"dep:wasmer_c_api",
"wasmer_c_api/llvm",
"dep:wasmer-c-api-imports",
"wasmer-c-api-imports/llvm",
"dep:tokio",
"dep:virtual-fs",
"dep:wasmer-types",
Expand All @@ -27,15 +27,15 @@ anyhow = "1"
# `[patch]`, so standalone builds of this repo should use
# `./cargo-standalone.sh`, which selects `Cargo.standalone.toml` when the
# sibling `../api`, `../wasix`, etc. tree is not present.
wasmer = { version = "=7.2.0", path = "../api" }
wasmer = { version = "=7.2.0-rc.1", path = "../api" }

# This dependencies are ONLY needed for testing napi in Wasm locally
wasmer-cache = { version = "=7.2.0", path = "../cache", optional = true }
wasmer_c_api = { version = "=7.2.0", path = "../c-api", optional = true, default-features = false, package = "wasmer-c-api" }
wasmer-compiler-llvm = { version = "=7.2.0", path = "../compiler-llvm", optional = true }
wasmer-types = { version = "=7.2.0", path = "../types", optional = true }
wasmer-wasix = { version = "=0.702.0", path = "../wasix", optional = true }
virtual-fs = { version = "=0.702.0", path = "../virtual-fs", optional = true }
wasmer-cache = { version = "=7.2.0-rc.1", path = "../cache", optional = true }
wasmer-c-api-imports = { version = "=7.2.0-rc.1", path = "../c-api-imports", optional = true, default-features = false }
wasmer-compiler-llvm = { version = "=7.2.0-rc.1", path = "../compiler-llvm", optional = true }
wasmer-types = { version = "=7.2.0-rc.1", path = "../types", optional = true }
wasmer-wasix = { version = "=0.702.0-rc.1", path = "../wasix", optional = true }
virtual-fs = { version = "=0.702.0-rc.1", path = "../virtual-fs", optional = true }
tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
enum-iterator = "2.3.0"

Expand Down
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use wasmer_wasix::{
};

use crate::{NapiCtx, guest::napi::register_env_imports};
use wasmer_c_api::wasm_c_api::imports::WasmCapiRuntimeHooks;
use wasmer_c_api_imports::WasmCapiRuntimeHooks;

#[derive(Debug, Clone)]
pub struct GuestMount {
Expand Down
Loading