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 Apr 25, 2024
1 parent 3f73619 commit 6256744
Show file tree
Hide file tree
Showing 15 changed files with 59 additions and 59 deletions.
66 changes: 33 additions & 33 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 @@ -21,7 +21,7 @@ wasmer-compiler-cranelift = { version = "=4.3.0-alpha.1", path = "lib/compiler-c
wasmer-compiler-singlepass = { version = "=4.3.0-alpha.1", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=4.3.0-alpha.1", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "=4.3.0-alpha.1", path = "lib/emscripten", optional = true }
wasmer-wasix = { version = "0.18.3", path = "lib/wasix", optional = true }
wasmer-wasix = { version = "0.18.4", path = "lib/wasix", optional = true }
wasmer-wast = { version = "=4.3.0-alpha.1", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=4.3.0-alpha.1", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=4.3.0-alpha.1", 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.25"
version = "0.0.26"
description = "Client library for the Wasmer GraphQL API"
readme = "README.md"
documentation = "https://docs.rs/wasmer-api"
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.3.0-alpha.1", path = "../compiler-s
wasmer-emscripten = { version = "=4.3.0-alpha.1", path = "../emscripten", optional = true }
wasmer-middlewares = { version = "=4.3.0-alpha.1", path = "../middlewares", optional = true }
wasmer-types = { version = "=4.3.0-alpha.1", path = "../types" }
wasmer-wasix = { version = "0.18.3", path = "../wasix", features = ["host-fs", "host-vnet"], optional = true }
wasmer-wasix = { version = "0.18.4", path = "../wasix", features = ["host-fs", "host-vnet"], optional = true }
webc = { workspace = true, optional = true }
virtual-fs = { version = "0.11.2", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] }
virtual-fs = { version = "0.11.3", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] }
enumset.workspace = true
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 @@ -76,7 +76,7 @@ wasmer-compiler-singlepass = { version = "=4.3.0-alpha.1", path = "../compiler-s
wasmer-compiler-llvm = { version = "=4.3.0-alpha.1", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "=4.3.0-alpha.1", path = "../emscripten" }
wasmer-vm = { version = "=4.3.0-alpha.1", path = "../vm", optional = true }
wasmer-wasix = { version = "0.18.3", path = "../wasix", features = [
wasmer-wasix = { version = "0.18.4", path = "../wasix", features = [
"logging",
"webc_runner_rt_wcgi",
"webc_runner_rt_dcgi",
Expand All @@ -89,21 +89,21 @@ wasmer-wast = { version = "=4.3.0-alpha.1", path = "../../tests/lib/wast", optio
wasmer-types = { version = "=4.3.0-alpha.1", path = "../types", features = [
"enable-serde",
] }
wasmer-registry = { version = "5.10.4", path = "../registry", features = [
wasmer-registry = { version = "5.11.0", path = "../registry", features = [
"build-package",
"clap",
] }
wasmer-object = { version = "=4.3.0-alpha.1", path = "../object", optional = true }
virtual-fs = { version = "0.11.2", path = "../virtual-fs", default-features = false, features = [
virtual-fs = { version = "0.11.3", path = "../virtual-fs", default-features = false, features = [
"host-fs",
] }
virtual-net = { version = "0.6.4", path = "../virtual-net" }
virtual-net = { version = "0.6.5", path = "../virtual-net" }
virtual-mio = { version = "0.3.1", path = "../virtual-io" }

# Wasmer-owned dependencies.

webc = { workspace = true }
wasmer-api = { version = "=0.0.25", path = "../backend-api" }
wasmer-api = { version = "=0.0.26", path = "../backend-api" }
edge-schema.workspace = true
edge-util = { version = "=0.1.0" }

Expand Down
6 changes: 3 additions & 3 deletions lib/journal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ log-file = [ "shared-buffer" ]

[dependencies]
wasmer = { default-features = false, path = "../api", version = "=4.3.0-alpha.1" }
wasmer-wasix-types = { path = "../wasi-types", version = "0.18.3", features = [ "enable-serde" ] }
virtual-net = { path = "../virtual-net", version = "0.6.4", default-features = false, features = ["rkyv"] }
virtual-fs = { path = "../virtual-fs", version = "0.11.2", default-features = false }
wasmer-wasix-types = { path = "../wasi-types", version = "0.18.4", features = [ "enable-serde" ] }
virtual-net = { path = "../virtual-net", version = "0.6.5", default-features = false, features = ["rkyv"] }
virtual-fs = { path = "../virtual-fs", version = "0.11.3", default-features = false }

shared-buffer = { workspace = true, optional = true }
thiserror = "1"
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.4"
version = "5.11.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.18.3"
version = "0.18.4"
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.3" }
wasmer-wasix = { path = "../wasix", version = "0.18.4" }
wasmer = { path = "../api", version = "=4.3.0-alpha.1", default-features = false, features = ["sys", "compiler", "cranelift"] }
tracing-subscriber = { version = "0.3.16", features = ["fmt"] }
tracing = "0.1.37"
Expand Down
Loading

0 comments on commit 6256744

Please sign in to comment.