Skip to content

Commit

Permalink
revert wasmer-wasix dependency to per project instead of workspace (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
maminrayej authored May 9, 2024
2 parents 35a0faf + 71b4a17 commit c110af6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/c-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ wasmer-compiler-singlepass = { version = "=4.3.0-beta.1", path = "../compiler-si
wasmer-emscripten = { version = "=4.3.0-beta.1", path = "../emscripten", optional = true }
wasmer-middlewares = { version = "=4.3.0-beta.1", path = "../middlewares", optional = true }
wasmer-types = { version = "=4.3.0-beta.1", path = "../types" }
wasmer-wasix = { workspace = true, features = ["host-fs", "host-vnet"], optional = true }
wasmer-wasix = { path = "../wasix", version="=0.19.0", features = ["host-fs", "host-vnet"], optional = true }
webc = { workspace = true, optional = true }
virtual-fs = { version = "0.11.4", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] }
enumset.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion lib/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ wasmer-compiler-singlepass = { version = "=4.3.0-beta.1", path = "../compiler-si
wasmer-compiler-llvm = { version = "=4.3.0-beta.1", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "=4.3.0-beta.1", path = "../emscripten" }
wasmer-vm = { version = "=4.3.0-beta.1", path = "../vm", optional = true }
wasmer-wasix = { workspace = true, features = [
wasmer-wasix = { path = "../wasix", version="=0.19.0" , features = [
"logging",
"webc_runner_rt_wcgi",
"webc_runner_rt_dcgi",
Expand Down
2 changes: 1 addition & 1 deletion tests/lib/wast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ readme = "README.md"
edition = "2018"

[dependencies]
wasmer-wasix.workspace = true
wasmer-wasix = { path = "../../../lib/wasix", version="=0.19.0" }
wasmer = { path = "../../../lib/api", version = "=4.3.0-beta.1", default-features = false }
virtual-fs = { path = "../../../lib/virtual-fs", version = "0.11.4" }

Expand Down

0 comments on commit c110af6

Please sign in to comment.