Skip to content

Commit

Permalink
update 0.x package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
maminrayej committed Nov 22, 2024
1 parent 0bca353 commit a6693db
Show file tree
Hide file tree
Showing 15 changed files with 63 additions and 63 deletions.
64 changes: 32 additions & 32 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 @@ -87,7 +87,7 @@ version = "5.0.2"

[workspace.dependencies]
# Repo-local crates
wasmer-package = { version = "0.2.0", path = "lib/package" }
wasmer-package = { version = "0.3.0", path = "lib/package" }
wasmer-config = { path = "./lib/config" }
wasmer-wasix = { path = "./lib/wasix" }

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 @@ -31,9 +31,9 @@ wasmer-compiler-llvm = { version = "=5.0.2", path = "../compiler-llvm", optional
wasmer-compiler-singlepass = { version = "=5.0.2", path = "../compiler-singlepass", optional = true }
wasmer-middlewares = { version = "=5.0.2", path = "../middlewares", optional = true }
wasmer-types = { version = "=5.0.2", path = "../types" }
wasmer-wasix = { path = "../wasix", version="=0.31.0", features = ["host-fs", "host-vnet"], optional = true }
wasmer-wasix = { path = "../wasix", version="=0.32.0", features = ["host-fs", "host-vnet"], optional = true }
webc = { workspace = true, optional = true }
virtual-fs = { version = "0.19.0", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] }
virtual-fs = { version = "0.20.0", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] }
enumset.workspace = true
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 @@ -120,7 +120,7 @@ wasmer-compiler-llvm = { version = "=5.0.2", path = "../compiler-llvm", optional
wasmer-package.workspace = true

wasmer-vm = { version = "=5.0.2", path = "../vm", optional = true }
wasmer-wasix = { path = "../wasix", version = "=0.31.0", features = [
wasmer-wasix = { path = "../wasix", version = "=0.32.0", features = [
"logging",
"webc_runner_rt_wcgi",
"webc_runner_rt_dcgi",
Expand All @@ -132,11 +132,11 @@ wasmer-wast = { version = "=5.0.2", path = "../../tests/lib/wast", optional = tr
wasmer-types = { version = "=5.0.2", path = "../types", features = [
"enable-serde",
] }
virtual-fs = { version = "0.19.0", path = "../virtual-fs", default-features = false, features = [
virtual-fs = { version = "0.20.0", path = "../virtual-fs", default-features = false, features = [
"host-fs",
] }
virtual-net = { version = "0.11.0", path = "../virtual-net" }
virtual-mio = { version = "0.5.0", path = "../virtual-io" }
virtual-net = { version = "0.12.0", path = "../virtual-net" }
virtual-mio = { version = "0.6.0", path = "../virtual-io" }

# Wasmer-owned dependencies.

Expand Down
8 changes: 4 additions & 4 deletions lib/journal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-journal"
version = "0.13.0"
version = "0.14.0"
description = "Journaling functionality used by Wasmer to save and restore WASM state"
authors.workspace = true
edition.workspace = true
Expand All @@ -15,13 +15,13 @@ log-file = ["shared-buffer"]

[dependencies]
wasmer = { default-features = false, path = "../api", version = "=5.0.2" }
wasmer-wasix-types = { path = "../wasi-types", version = "0.31.0", features = [
wasmer-wasix-types = { path = "../wasi-types", version = "0.32.0", features = [
"enable-serde",
] }
virtual-net = { path = "../virtual-net", version = "0.11.0", default-features = false, features = [
virtual-net = { path = "../virtual-net", version = "0.12.0", default-features = false, features = [
"rkyv",
] }
virtual-fs = { path = "../virtual-fs", version = "0.19.0", default-features = false }
virtual-fs = { path = "../virtual-fs", version = "0.20.0", default-features = false }

shared-buffer = { workspace = true, optional = true }
base64.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion lib/package/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-package"
version = "0.2.0"
version = "0.3.0"
description = "Packaging related types and functions for Wasmer"

authors.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions lib/swift/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-swift"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
description = "Experimental wasmer bindings for swift"
license = "MIT"
Expand All @@ -15,14 +15,14 @@ name = "wasmer_swift"
thiserror = "1"
tokio = { version = "1.28.1", features = [ "rt" ], default-features = false }
uniffi = "0.27"
virtual-fs = { path = "../virtual-fs", version = "=0.19.0", default-features = false, features = [
virtual-fs = { path = "../virtual-fs", version = "=0.20.0", default-features = false, features = [
"webc-fs",
] }
wasmer = { version = "=5.0.2", path = "../api", default-features = false, features = [
"wamr",
"std",
] }
wasmer-wasix = { version = "=0.31.0", path = "../wasix" }
wasmer-wasix = { version = "=0.32.0", path = "../wasix" }
webc.workspace = true
wasmer-package.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion 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.31.0"
version = "0.32.0"
description = "Wasmer utilities for a sys environment."
categories = ["wasm"]
keywords = ["wasm", "webassembly"]
Expand Down
Loading

0 comments on commit a6693db

Please sign in to comment.