Skip to content

Commit

Permalink
Updated the other crates too
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed Apr 18, 2023
1 parent e7476ad commit d08d3c1
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 27 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ wasmer-compiler-cranelift = { version = "=3.2.0", path = "lib/compiler-cranelift
wasmer-compiler-singlepass = { version = "=3.2.0", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=3.2.0", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "=3.2.0", path = "lib/emscripten", optional = true }
wasmer-wasix = { version = "0.2.0", path = "lib/wasi", optional = true }
wasmer-wasix = { version = "0.3.0", path = "lib/wasi", optional = true }
wasmer-wast = { version = "=3.2.0", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=3.2.0", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=3.2.0", path = "lib/cache", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions lib/c-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ wasmer-compiler-singlepass = { version = "=3.2.0", path = "../compiler-singlepas
wasmer-emscripten = { version = "=3.2.0", path = "../emscripten", optional = true }
wasmer-middlewares = { version = "=3.2.0", path = "../middlewares", optional = true }
wasmer-types = { version = "=3.2.0", path = "../types" }
wasmer-wasix = { version = "0.2.0", path = "../wasi", features = ["host-fs", "host-vnet"], optional = true }
wasmer-wasix = { version = "0.3.0", path = "../wasi", features = ["host-fs", "host-vnet"], optional = true }
webc = { version = "5.0", optional = true }
virtual-fs = { version = "0.1.1", path = "../vfs", optional = true, default-features = false, features = ["static-fs"] }
virtual-fs = { version = "0.2.0", path = "../vfs", optional = true, default-features = false, features = ["static-fs"] }
enumset = "1.0.2"
cfg-if = "1.0"
lazy_static = "1.4"
Expand Down
8 changes: 4 additions & 4 deletions lib/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ wasmer-compiler-singlepass = { version = "=3.2.0", path = "../compiler-singlepas
wasmer-compiler-llvm = { version = "=3.2.0", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "=3.2.0", path = "../emscripten" }
wasmer-vm = { version = "=3.2.0", path = "../vm" }
wasmer-wasix = { version = "0.2.0", path = "../wasi", features = ["logging", "webc_runner", "webc_runner_rt_wcgi", "webc_runner_rt_wasi", "webc_runner_rt_emscripten", "host-fs"] }
wasmer-wasix-experimental-io-devices = { version = "0.2.0", path = "../wasi-experimental-io-devices", optional = true, features = ["link_external_libs"] }
wasmer-wasix = { version = "0.3.0", path = "../wasi", features = ["logging", "webc_runner", "webc_runner_rt_wcgi", "webc_runner_rt_wasi", "webc_runner_rt_emscripten", "host-fs"] }
wasmer-wasix-experimental-io-devices = { version = "0.3.0", path = "../wasi-experimental-io-devices", optional = true, features = ["link_external_libs"] }
wasmer-wast = { version = "=3.2.0", path = "../../tests/lib/wast", optional = true }
wasmer-cache = { version = "=3.2.0", path = "../cache", features = ["blake3-pure"] }
wasmer-types = { version = "=3.2.0", path = "../types", features = ["enable-serde"] }
wasmer-registry = { version = "4.3.0", path = "../registry", features = ["build-package"] }
wasmer-registry = { version = "4.4.0", path = "../registry", features = ["build-package"] }
wasmer-object = { version = "=3.2.0", path = "../object", optional = true }
virtual-fs = { version = "0.1.1", path = "../vfs", default-features = false, features = ["host-fs"] }
virtual-fs = { version = "0.2.0", path = "../vfs", default-features = false, features = ["host-fs"] }
virtual-net = { version = "0.1.0", path = "../vnet" }
atty = "0.2"
colored = "2.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-registry"
version = "4.3.0"
version = "4.4.0"
edition = "2021"
license = "MIT"
description = "Crate to interact with the wasmer registry (wapm.io), download packages, etc."
Expand Down
4 changes: 2 additions & 2 deletions lib/sys-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-sys-utils"
version = "0.2.0"
version = "0.3.0"
description = "Wasmer utilities for a sys environment."
categories = ["wasm"]
keywords = ["wasm", "webassembly"]
Expand All @@ -19,7 +19,7 @@ region = { version = "3.0" }
libc = { version = "^0.2", default-features = false }

[dev-dependencies]
wasmer-wasix = { path = "../wasi", version = "0.2.0" }
wasmer-wasix = { path = "../wasi", version = "0.3.0" }
wasmer = { path = "../api", version = "=3.2.0", default-features = false, features = ["sys", "compiler", "cranelift"] }
tracing-subscriber = { version = "0.3.16", features = ["fmt"] }
tracing = "0.1.37"
2 changes: 1 addition & 1 deletion lib/vfs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "virtual-fs"
version = "0.1.1"
version = "0.2.0"
description = "Wasmer Virtual FileSystem"
authors = ["Wasmer Engineering Team <[email protected]>"]
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions lib/wasi-experimental-io-devices/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-wasix-experimental-io-devices"
version = "0.2.0"
version = "0.3.0"
description = "An experimental non-standard WASI/WASIX extension for graphics"
categories = ["wasm"]
keywords = ["wasm", "webassembly", "types"]
Expand All @@ -14,8 +14,8 @@ edition = "2018"
maintenance = { status = "experimental" }

[dependencies]
wasmer-wasix = { version = "0.2.0", path = "../wasi", default-features=false }
wasmer-wasix-types = { path = "../wasi-types", version = "0.2.0" }
wasmer-wasix = { version = "0.3.0", path = "../wasi", default-features=false }
wasmer-wasix-types = { path = "../wasi-types", version = "0.3.0" }
tracing = "0.1"
minifb = { version = "0.24.0", optional = true }
nix = "0.25.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/wasi-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-wasix-types"
version = "0.2.0"
version = "0.3.0"
description = "WASI and WASIX types for Wasmer WebAssembly runtime"
categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
Expand Down
6 changes: 3 additions & 3 deletions lib/wasi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-wasix"
version = "0.2.0"
version = "0.3.0"
description = "WASI and WASIX implementation library for Wasmer WebAssembly runtime"
categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
Expand All @@ -15,10 +15,10 @@ cfg-if = "1.0"
thiserror = "1"
tracing = { version = "0.1" }
getrandom = "0.2"
wasmer-wasix-types = { path = "../wasi-types", version = "0.2.0" }
wasmer-wasix-types = { path = "../wasi-types", version = "0.3.0" }
wasmer-types = { path = "../types", version = "=3.2.0", default-features = false }
wasmer = { path = "../api", version = "=3.2.0", default-features = false, features = ["wat", "js-serializable-module"] }
virtual-fs = { path = "../vfs", version = "0.1.1", default-features = false, features = ["webc-fs"] }
virtual-fs = { path = "../vfs", version = "0.2.0", default-features = false, features = ["webc-fs"] }
virtual-net = { path = "../vnet", version = "0.1.0", default-features = false }
wasmer-emscripten = { path = "../emscripten", version = "=3.2.0", optional = true }
typetag = { version = "0.1", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions tests/lib/wast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ edition = "2018"
[dependencies]
anyhow = "1.0"
wasmer = { path = "../../../lib/api", version = "=3.2.0", default-features = false }
wasmer-wasix = { path = "../../../lib/wasi", version = "0.2.0" }
virtual-fs = { path = "../../../lib/vfs", version = "0.1.0" }
wasmer-wasix = { path = "../../../lib/wasi", version = "0.3.0" }
virtual-fs = { path = "../../../lib/vfs", version = "0.2.0" }
wast = "38.0"
serde = "1"
tempfile = "3.4.0"
Expand Down

0 comments on commit d08d3c1

Please sign in to comment.