Skip to content

Commit

Permalink
Update package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Arshia001 committed Sep 28, 2023
1 parent 7fb755a commit 9302066
Show file tree
Hide file tree
Showing 16 changed files with 69 additions and 69 deletions.
62 changes: 31 additions & 31 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 @@ -20,7 +20,7 @@ wasmer-compiler-cranelift = { version = "=4.2.1", path = "lib/compiler-cranelift
wasmer-compiler-singlepass = { version = "=4.2.1", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=4.2.1", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "=4.2.1", path = "lib/emscripten", optional = true }
wasmer-wasix = { version = "0.13.0", path = "lib/wasix", optional = true }
wasmer-wasix = { version = "0.14.0", path = "lib/wasix", optional = true }
wasmer-wast = { version = "=4.2.1", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=4.2.1", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=4.2.1", 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 @@ -32,9 +32,9 @@ wasmer-compiler-singlepass = { version = "=4.2.1", path = "../compiler-singlepas
wasmer-emscripten = { version = "=4.2.1", path = "../emscripten", optional = true }
wasmer-middlewares = { version = "=4.2.1", path = "../middlewares", optional = true }
wasmer-types = { version = "=4.2.1", path = "../types" }
wasmer-wasix = { version = "0.13.0", path = "../wasix", features = ["host-fs", "host-vnet"], optional = true }
wasmer-wasix = { version = "0.14.0", path = "../wasix", features = ["host-fs", "host-vnet"], optional = true }
webc = { version = "5.0", optional = true }
virtual-fs = { version = "0.8.0", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] }
virtual-fs = { version = "0.9.0", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] }
enumset = "1.0.2"
cfg-if = "1.0"
lazy_static = "1.4"
Expand Down
10 changes: 5 additions & 5 deletions lib/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ wasmer-compiler-singlepass = { version = "=4.2.1", path = "../compiler-singlepas
wasmer-compiler-llvm = { version = "=4.2.1", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "=4.2.1", path = "../emscripten" }
wasmer-vm = { version = "=4.2.1", path = "../vm", optional = true }
wasmer-wasix = { version = "0.13.0", path = "../wasix", features = [
wasmer-wasix = { version = "0.14.0", path = "../wasix", features = [
"logging",
"webc_runner_rt_wcgi",
"webc_runner_rt_emscripten",
"host-fs",
] }
wasmer-wasix-experimental-io-devices = { version = "0.13.0", path = "../wasi-experimental-io-devices", optional = true, features = [
wasmer-wasix-experimental-io-devices = { version = "0.14.0", path = "../wasi-experimental-io-devices", optional = true, features = [
"link_external_libs",
] }
wasmer-wast = { version = "=4.2.1", path = "../../tests/lib/wast", optional = true }
Expand All @@ -52,15 +52,15 @@ wasmer-cache = { version = "=4.2.1", path = "../cache", features = [
wasmer-types = { version = "=4.2.1", path = "../types", features = [
"enable-serde",
] }
wasmer-registry = { version = "5.6.0", path = "../registry", features = [
wasmer-registry = { version = "5.7.0", path = "../registry", features = [
"build-package",
"clap",
] }
wasmer-object = { version = "=4.2.1", path = "../object", optional = true }
virtual-fs = { version = "0.8.0", path = "../virtual-fs", default-features = false, features = [
virtual-fs = { version = "0.9.0", path = "../virtual-fs", default-features = false, features = [
"host-fs",
] }
virtual-net = { version = "0.5.0", path = "../virtual-net" }
virtual-net = { version = "0.6.0", path = "../virtual-net" }

# Wasmer-owned dependencies.
webc = { workspace = true }
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 = "5.6.0"
version = "5.7.0"
description = "Crate to interact with the wasmer registry, download packages, etc."
authors.workspace = true
edition.workspace = true
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.13.0"
version = "0.14.0"
description = "Wasmer utilities for a sys environment."
categories = ["wasm"]
keywords = ["wasm", "webassembly"]
Expand All @@ -22,7 +22,7 @@ tracing = "0.1.37"
libc = { version = "^0.2", default-features = false }

[dev-dependencies]
wasmer-wasix = { path = "../wasix", version = "0.13.0" }
wasmer-wasix = { path = "../wasix", version = "0.14.0" }
wasmer = { path = "../api", version = "=4.2.1", default-features = false, features = ["sys", "compiler", "cranelift"] }
tracing-subscriber = { version = "0.3.16", features = ["fmt"] }
tracing = "0.1.37"
Expand Down
2 changes: 1 addition & 1 deletion lib/virtual-fs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "virtual-fs"
version = "0.8.0"
version = "0.9.0"
description = "Wasmer Virtual FileSystem"
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion lib/virtual-io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "virtual-mio"
version = "0.2.0"
version = "0.3.0"
description = "Wasmer Virtual IO Engine powered by mio"
authors.workspace = true
edition.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions lib/virtual-net/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "virtual-net"
version = "0.5.0"
version = "0.6.0"
description = "Wasmer Virtual Networking"
authors.workspace = true
edition.workspace = true
Expand All @@ -19,7 +19,7 @@ libc = { version = "0.2.139", optional = true }
mio = { version = "0.8", optional = true }
socket2 = { version = "0.4", optional = true }
derivative = { version = "^2" }
virtual-mio = { path = "../virtual-io", version = "0.2.0", default-features = false }
virtual-mio = { path = "../virtual-io", version = "0.3.0", default-features = false }
base64 = "0.21"
bincode = { version = "1.3" }
serde = { version = "1.0", default-features = false, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion lib/wai-bindgen-wasmer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wai-bindgen-wasmer"
description = "Generate WAI glue for a Rust Wasmer host"
version = "0.13.0"
version = "0.14.0"
categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
readme = "README.md"
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.13.0"
version = "0.14.0"
description = "An experimental non-standard WASI/WASIX extension for graphics"
categories = ["wasm"]
keywords = ["wasm", "webassembly", "types"]
Expand All @@ -17,8 +17,8 @@ maintenance = { status = "experimental" }

[dependencies]
wasmer = { version = "4.2.1", path = "../api", default-features=false }
wasmer-wasix = { version = "0.13.0", path = "../wasix", default-features=false }
wasmer-wasix-types = { path = "../wasi-types", version = "0.13.0" }
wasmer-wasix = { version = "0.14.0", path = "../wasix", default-features=false }
wasmer-wasix-types = { path = "../wasi-types", version = "0.14.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.13.0"
version = "0.14.0"
description = "WASI and WASIX types for Wasmer WebAssembly runtime"
categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
Expand Down
Loading

0 comments on commit 9302066

Please sign in to comment.