Skip to content

Commit

Permalink
Update 0.x package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Arshia001 committed Mar 19, 2024
1 parent bf56b58 commit cfc80c8
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 21 deletions.
12 changes: 6 additions & 6 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.7", path = "lib/compiler-cranelift
wasmer-compiler-singlepass = { version = "=4.2.7", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=4.2.7", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "=4.2.7", path = "lib/emscripten", optional = true }
wasmer-wasix = { version = "0.18.0", path = "lib/wasix", optional = true }
wasmer-wasix = { version = "0.18.2", path = "lib/wasix", optional = true }
wasmer-wast = { version = "=4.2.7", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=4.2.7", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=4.2.7", path = "lib/cache", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion lib/backend-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-api"
version = "0.0.23"
version = "0.0.24"
description = "Client library for the Wasmer GraphQL API"
readme = "README.md"
documentation = "https://docs.rs/wasmer-api"
Expand Down
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.2.7", path = "../compiler-singlepas
wasmer-emscripten = { version = "=4.2.7", path = "../emscripten", optional = true }
wasmer-middlewares = { version = "=4.2.7", path = "../middlewares", optional = true }
wasmer-types = { version = "=4.2.7", path = "../types" }
wasmer-wasix = { version = "0.18.0", path = "../wasix", features = ["host-fs", "host-vnet"], optional = true }
wasmer-wasix = { version = "0.18.2", path = "../wasix", features = ["host-fs", "host-vnet"], optional = true }
webc = { version = "5.0", optional = true }
virtual-fs = { version = "0.11.1", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] }
enumset.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions lib/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ wasmer-compiler-singlepass = { version = "=4.2.7", path = "../compiler-singlepas
wasmer-compiler-llvm = { version = "=4.2.7", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "=4.2.7", path = "../emscripten" }
wasmer-vm = { version = "=4.2.7", path = "../vm", optional = true }
wasmer-wasix = { version = "0.18.1", path = "../wasix", features = [
wasmer-wasix = { version = "0.18.2", path = "../wasix", features = [
"logging",
"webc_runner_rt_wcgi",
"webc_runner_rt_dcgi",
Expand All @@ -86,7 +86,7 @@ wasmer-wast = { version = "=4.2.7", path = "../../tests/lib/wast", optional = tr
wasmer-types = { version = "=4.2.7", path = "../types", features = [
"enable-serde",
] }
wasmer-registry = { version = "5.10.2", path = "../registry", features = [
wasmer-registry = { version = "5.10.3", path = "../registry", features = [
"build-package",
"clap",
] }
Expand All @@ -100,7 +100,7 @@ virtual-mio = { version = "0.3.0", path = "../virtual-io" }
# Wasmer-owned dependencies.

webc = { workspace = true }
wasmer-api = { version = "=0.0.23", path = "../backend-api" }
wasmer-api = { version = "=0.0.24", path = "../backend-api" }
edge-schema = { version = "=0.0.2" }
edge-util = { version = "=0.0.1" }

Expand Down
2 changes: 1 addition & 1 deletion lib/journal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ log-file = [ "shared-buffer" ]

[dependencies]
wasmer = { default-features = false, path = "../api", version = "=4.2.7" }
wasmer-wasix-types = { path = "../wasi-types", version = "0.18.1", features = [ "enable-serde" ] }
wasmer-wasix-types = { path = "../wasi-types", version = "0.18.2", features = [ "enable-serde" ] }
virtual-net = { path = "../virtual-net", version = "0.6.3", default-features = false, features = ["rkyv"] }

shared-buffer = { workspace = true, optional = 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.10.2"
version = "5.10.3"
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.18.1"
version = "0.18.2"
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.18.1" }
wasmer-wasix = { path = "../wasix", version = "0.18.2" }
wasmer = { path = "../api", version = "=4.2.7", 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/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.18.1"
version = "0.18.2"
categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
readme = "README.md"
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.18.1"
version = "0.18.2"
description = "WASI and WASIX types for Wasmer WebAssembly runtime"
categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
Expand Down
4 changes: 2 additions & 2 deletions lib/wasix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-wasix"
version = "0.18.1"
version = "0.18.2"
description = "WASI and WASIX implementation library for Wasmer WebAssembly runtime"
categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
Expand All @@ -19,7 +19,7 @@ cfg-if = "1.0"
thiserror = "1"
tracing = { version = "0.1.37" }
getrandom = "0.2"
wasmer-wasix-types = { path = "../wasi-types", version = "0.18.1", features = [ "enable-serde" ] }
wasmer-wasix-types = { path = "../wasi-types", version = "0.18.2", features = [ "enable-serde" ] }
wasmer-types = { path = "../types", version = "=4.2.7", default-features = false }
wasmer = { path = "../api", version = "=4.2.7", default-features = false, features = ["wat", "js-serializable-module"] }
virtual-mio = { path = "../virtual-io", version = "0.3.0", default-features = false }
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 @@ -13,7 +13,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0"
wasmer = { path = "../../../lib/api", version = "=4.2.7", default-features = false }
wasmer-wasix = { path = "../../../lib/wasix", version = "0.18.1" }
wasmer-wasix = { path = "../../../lib/wasix", version = "0.18.2" }
virtual-fs = { path = "../../../lib/virtual-fs", version = "0.11.1" }
wast = "38.0"
serde = "1"
Expand Down

0 comments on commit cfc80c8

Please sign in to comment.