Skip to content

Commit

Permalink
Release 5.0.5-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
xdoardo committed Jan 3, 2025
1 parent 401a449 commit 4d5a913
Show file tree
Hide file tree
Showing 29 changed files with 703 additions and 586 deletions.
1,113 changes: 615 additions & 498 deletions Cargo.lock

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
wasmer = { version = "=5.0.4", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=5.0.4", path = "lib/compiler", features = [
wasmer = { version = "=5.0.5-rc1", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=5.0.5-rc1", path = "lib/compiler", features = [
"compiler",
], optional = true }
wasmer-compiler-cranelift = { version = "=5.0.4", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=5.0.4", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=5.0.4", path = "lib/compiler-llvm", optional = true }
wasmer-compiler-cranelift = { version = "=5.0.5-rc1", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=5.0.5-rc1", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=5.0.5-rc1", path = "lib/compiler-llvm", optional = true }
wasmer-wasix = { path = "lib/wasix", optional = true }
wasmer-wast = { version = "=5.0.4", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=5.0.4", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=5.0.4", path = "lib/cache", optional = true }
wasmer-types = { version = "=5.0.4", path = "lib/types" }
wasmer-middlewares = { version = "=5.0.4", path = "lib/middlewares", optional = true }
wasmer-wast = { version = "=5.0.5-rc1", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=5.0.5-rc1", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=5.0.5-rc1", path = "lib/cache", optional = true }
wasmer-types = { version = "=5.0.5-rc1", path = "lib/types" }
wasmer-middlewares = { version = "=5.0.5-rc1", path = "lib/middlewares", optional = true }

# Third party dependencies
cfg-if = "1.0"
Expand Down Expand Up @@ -83,7 +83,7 @@ homepage = "https://wasmer.io/"
license = "MIT"
repository = "https://github.com/wasmerio/wasmer"
rust-version = "1.81"
version = "5.0.4"
version = "5.0.5-rc1"

[workspace.dependencies]
# Repo-local crates
Expand Down Expand Up @@ -132,7 +132,7 @@ glob = "0.3"
rustc_version = "0.4"

[dev-dependencies]
wasmer = { version = "=5.0.4", path = "lib/api", features = [
wasmer = { version = "=5.0.5-rc1", path = "lib/api", features = [
"compiler",
"singlepass",
"sys",
Expand Down
22 changes: 11 additions & 11 deletions lib/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ loupe = { version = "0.1.3", optional = true, features = [
# Dependencies and Development Dependencies for `sys`.
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# - Mandatory dependencies for `sys`.
wasmer-vm = { path = "../vm", version = "=5.0.4" }
wasmer-compiler = { path = "../compiler", version = "=5.0.4" }
wasmer-derive = { path = "../derive", version = "=5.0.4" }
wasmer-types = { path = "../types", version = "=5.0.4" }
wasmer-vm = { path = "../vm", version = "=5.0.5-rc1" }
wasmer-compiler = { path = "../compiler", version = "=5.0.5-rc1" }
wasmer-derive = { path = "../derive", version = "=5.0.5-rc1" }
wasmer-types = { path = "../types", version = "=5.0.5-rc1" }
target-lexicon = { version = "0.12.2", default-features = false }
# - Optional dependencies for `sys`.
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.4", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.0.4", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.0.4", optional = true }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.5-rc1", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.0.5-rc1", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.0.5-rc1", optional = true }

wasm-bindgen = { version = "0.2.74", optional = true }
js-sys = { version = "0.3.51", optional = true }
Expand All @@ -73,17 +73,17 @@ windows-sys = "0.59"
wat = "1.0"
tempfile = "3.6.0"
anyhow = "1.0"
macro-wasmer-universal-test = { version = "5.0.4", path = "./macro-wasmer-universal-test" }
macro-wasmer-universal-test = { version = "5.0.5-rc1", path = "./macro-wasmer-universal-test" }

# Dependencies and Develoment Dependencies for `js`.
[target.'cfg(target_arch = "wasm32")'.dependencies]
# - Mandatory dependencies for `js`.
wasmer-types = { path = "../types", version = "=5.0.4", default-features = false, features = [
wasmer-types = { path = "../types", version = "=5.0.5-rc1", default-features = false, features = [
"std",
] }
wasm-bindgen = "0.2.74"
js-sys = "0.3.51"
wasmer-derive = { path = "../derive", version = "=5.0.4" }
wasmer-derive = { path = "../derive", version = "=5.0.5-rc1" }
# - Optional dependencies for `js`.
wasmparser = { workspace = true, default-features = false, optional = true }
hashbrown = { version = "0.11", optional = true }
Expand All @@ -96,7 +96,7 @@ target-lexicon = { workspace = true }
wat = "1.0"
anyhow = "1.0"
wasm-bindgen-test = "0.3.0"
macro-wasmer-universal-test = { version = "5.0.4", path = "./macro-wasmer-universal-test" }
macro-wasmer-universal-test = { version = "5.0.5-rc1", path = "./macro-wasmer-universal-test" }

# Specific to `js`.
#
Expand Down
2 changes: 1 addition & 1 deletion lib/api/macro-wasmer-universal-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "macro-wasmer-universal-test"
version = "5.0.4"
version = "5.0.5-rc1"
edition = "2021"
license = "MIT"
description = "Universal test macro for wasmer-test"
Expand Down
14 changes: 7 additions & 7 deletions lib/c-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ crate-type = ["staticlib", "cdylib"] #"cdylib", "rlib", "staticlib"]
[dependencies]
# We rename `wasmer` to `wasmer-api` to avoid the conflict with this
# library name (see `[lib]`).
wasmer-api = { version = "=5.0.4", path = "../api", default-features = false, package = "wasmer" }
wasmer-compiler = { version = "=5.0.4", path = "../compiler", optional = true }
wasmer-compiler-cranelift = { version = "=5.0.4", path = "../compiler-cranelift", optional = true }
wasmer-compiler-llvm = { version = "=5.0.4", path = "../compiler-llvm", optional = true }
wasmer-compiler-singlepass = { version = "=5.0.4", path = "../compiler-singlepass", optional = true }
wasmer-middlewares = { version = "=5.0.4", path = "../middlewares", optional = true }
wasmer-types = { version = "=5.0.4", path = "../types" }
wasmer-api = { version = "=5.0.5-rc1", path = "../api", default-features = false, package = "wasmer" }
wasmer-compiler = { version = "=5.0.5-rc1", path = "../compiler", optional = true }
wasmer-compiler-cranelift = { version = "=5.0.5-rc1", path = "../compiler-cranelift", optional = true }
wasmer-compiler-llvm = { version = "=5.0.5-rc1", path = "../compiler-llvm", optional = true }
wasmer-compiler-singlepass = { version = "=5.0.5-rc1", path = "../compiler-singlepass", optional = true }
wasmer-middlewares = { version = "=5.0.5-rc1", path = "../middlewares", optional = true }
wasmer-types = { version = "=5.0.5-rc1", path = "../types" }
wasmer-wasix = { path = "../wasix", version="=0.34.0", features = ["host-fs", "host-vnet"], optional = true }
webc = { workspace = true, optional = true }
virtual-fs = { version = "0.20.0", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] }
Expand Down
2 changes: 1 addition & 1 deletion lib/c-api/examples/wasmer-capi-examples-runner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-capi-examples-runner"
version = "5.0.4"
version = "5.0.5-rc1"
edition = "2021"
license = "MIT"
description = "wasmer-capi-examples-runner"
Expand Down
2 changes: 1 addition & 1 deletion lib/c-api/tests/wasmer-c-api-test-runner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-c-api-test-runner"
version = "5.0.4"
version = "5.0.5-rc1"
edition = "2021"
license = "MIT"
description = "wasmer-c-api-test-runner"
Expand Down
6 changes: 3 additions & 3 deletions lib/cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
wasmer = { path = "../api", version = "=5.0.4", default-features = false }
wasmer = { path = "../api", version = "=5.0.5-rc1", default-features = false }
hex = "0.4"
thiserror = "1"
blake3 = "1.0"
Expand All @@ -26,8 +26,8 @@ clap_derive = { version = "=4.4.7" }
clap_lex = { version = "=0.6.0" }
tempfile = "3.6.0"
rand = "0.8.3"
wasmer = { path = "../api", version = "=5.0.4", default-features = false, features = ["sys", "cranelift"] }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.4" }
wasmer = { path = "../api", version = "=5.0.5-rc1", default-features = false, features = ["sys", "cranelift"] }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.5-rc1" }

[features]
default = ["filesystem"]
Expand Down
12 changes: 6 additions & 6 deletions lib/cli-compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ path = "src/bin/wasmer_compiler.rs"
doc = false

[dependencies]
wasmer-compiler = { version = "=5.0.4", path = "../compiler", features = [
wasmer-compiler = { version = "=5.0.5-rc1", path = "../compiler", features = [
"compiler",
] }
wasmer-types = { version = "=5.0.4", path = "../types" }
wasmer-types = { version = "=5.0.5-rc1", path = "../types" }
is-terminal = "0.4.7"
colored = "2.0"
anyhow = "1.0"
Expand All @@ -38,15 +38,15 @@ log = { version = "0.4", optional = true }
target-lexicon = { version = "0.12", features = ["std"] }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
wasmer-compiler-singlepass = { version = "=5.0.4", path = "../compiler-singlepass", optional = true }
wasmer-compiler-cranelift = { version = "=5.0.4", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=5.0.5-rc1", path = "../compiler-singlepass", optional = true }
wasmer-compiler-cranelift = { version = "=5.0.5-rc1", path = "../compiler-cranelift", optional = true }
clap = { version = "4.4.0", features = ["derive", "env"] }

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasmer-compiler-singlepass = { version = "=5.0.4", path = "../compiler-singlepass", optional = true, default-features = false, features = [
wasmer-compiler-singlepass = { version = "=5.0.5-rc1", path = "../compiler-singlepass", optional = true, default-features = false, features = [
"wasm",
] }
wasmer-compiler-cranelift = { version = "=5.0.4", path = "../compiler-cranelift", optional = true, default-features = false, features = [
wasmer-compiler-cranelift = { version = "=5.0.5-rc1", path = "../compiler-cranelift", optional = true, default-features = false, features = [
"wasm",
] }
# NOTE: Must use different features for clap because the "color" feature does not
Expand Down
16 changes: 8 additions & 8 deletions lib/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,16 +110,16 @@ enable-serde = [
[dependencies]
# Repo-local dependencies.

wasmer = { version = "=5.0.4", path = "../api", default-features = false }
wasmer-compiler = { version = "=5.0.4", path = "../compiler", features = [
wasmer = { version = "=5.0.5-rc1", path = "../api", default-features = false }
wasmer-compiler = { version = "=5.0.5-rc1", path = "../compiler", features = [
"compiler",
], optional = true }
wasmer-compiler-cranelift = { version = "=5.0.4", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=5.0.4", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=5.0.4", path = "../compiler-llvm", optional = true }
wasmer-compiler-cranelift = { version = "=5.0.5-rc1", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=5.0.5-rc1", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=5.0.5-rc1", path = "../compiler-llvm", optional = true }
wasmer-package.workspace = true

wasmer-vm = { version = "=5.0.4", path = "../vm", optional = true }
wasmer-vm = { version = "=5.0.5-rc1", path = "../vm", optional = true }
wasmer-wasix = { path = "../wasix", version = "=0.34.0", features = [
"logging",
"webc_runner_rt_wcgi",
Expand All @@ -128,8 +128,8 @@ wasmer-wasix = { path = "../wasix", version = "=0.34.0", features = [
"host-fs",
"ctrlc",
] }
wasmer-wast = { version = "=5.0.4", path = "../../tests/lib/wast", optional = true }
wasmer-types = { version = "=5.0.4", path = "../types", features = [
wasmer-wast = { version = "=5.0.5-rc1", path = "../../tests/lib/wast", optional = true }
wasmer-types = { version = "=5.0.5-rc1", path = "../types", features = [
"enable-serde",
] }
virtual-fs = { version = "0.20.0", path = "../virtual-fs", default-features = false, features = [
Expand Down
4 changes: 2 additions & 2 deletions lib/compiler-cranelift/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
wasmer-compiler = { path = "../compiler", version = "=5.0.4", features = [
wasmer-compiler = { path = "../compiler", version = "=5.0.5-rc1", features = [
"translator",
"compiler",
], default-features = false }
wasmer-types = { path = "../types", version = "=5.0.4", default-features = false, features = [
wasmer-types = { path = "../types", version = "=5.0.5-rc1", default-features = false, features = [
"std",
] }
cranelift-entity = { version = "=0.110.2", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions lib/compiler-llvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
wasmer-compiler = { path = "../compiler", version = "=5.0.4", features = [
wasmer-compiler = { path = "../compiler", version = "=5.0.5-rc1", features = [
"translator", "compiler"
] }
wasmer-vm = { path = "../vm", version = "=5.0.4" }
wasmer-types = { path = "../types", version = "=5.0.4" }
wasmer-vm = { path = "../vm", version = "=5.0.5-rc1" }
wasmer-types = { path = "../types", version = "=5.0.5-rc1" }
target-lexicon = { version = "0.12.2", default-features = false }
smallvec = "1.6"
object = { version = "0.30.3", default-features = false, features = ["read"] }
Expand Down
4 changes: 2 additions & 2 deletions lib/compiler-singlepass/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
wasmer-compiler = { path = "../compiler", version = "=5.0.4", features = ["translator", "compiler"], default-features = false }
wasmer-types = { path = "../types", version = "=5.0.4", default-features = false, features = ["std"] }
wasmer-compiler = { path = "../compiler", version = "=5.0.5-rc1", features = ["translator", "compiler"], default-features = false }
wasmer-types = { path = "../types", version = "=5.0.5-rc1", default-features = false, features = ["std"] }
hashbrown = { version = "0.11", optional = true }
gimli = { workspace = true, optional = true }
enumset.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions lib/compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
wasmer-types = { path = "../types", version = "=5.0.4", default-features = false }
wasmer-types = { path = "../types", version = "=5.0.5-rc1", default-features = false }
wasmparser = { workspace = true, optional = true, default-features = false }
enumset.workspace = true
hashbrown = { version = "0.11", optional = true }
Expand Down Expand Up @@ -46,7 +46,7 @@ target-lexicon = { workspace = true }
object = { workspace = true, features = ["write"] }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
wasmer-vm = { path = "../vm", version = "=5.0.4" }
wasmer-vm = { path = "../vm", version = "=5.0.5-rc1" }
region = { version = "3.0" }

[target.'cfg(target_os = "windows")'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion lib/journal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ default = ["log-file", "wasmer/sys"]
log-file = ["shared-buffer"]

[dependencies]
wasmer = { default-features = false, path = "../api", version = "=5.0.4" }
wasmer = { default-features = false, path = "../api", version = "=5.0.5-rc1" }
wasmer-wasix-types = { path = "../wasi-types", version = "0.34.0", features = [
"enable-serde",
] }
Expand Down
8 changes: 4 additions & 4 deletions lib/middlewares/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
wasmer = { path = "../api", version = "=5.0.4", default-features = false, features = ["compiler"] }
wasmer-types = { path = "../types", version = "=5.0.4" }
wasmer-vm = { path = "../vm", version = "=5.0.4" }
wasmer = { path = "../api", version = "=5.0.5-rc1", default-features = false, features = ["compiler"] }
wasmer-types = { path = "../types", version = "=5.0.5-rc1" }
wasmer-vm = { path = "../vm", version = "=5.0.5-rc1" }

[dev-dependencies]
wasmer = { path = "../api", version = "=5.0.4", features = ["compiler"] }
wasmer = { path = "../api", version = "=5.0.5-rc1", features = ["compiler"] }

[badges]
maintenance = { status = "actively-developed" }
Expand Down
2 changes: 1 addition & 1 deletion lib/swift/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ uniffi = "0.27"
virtual-fs = { path = "../virtual-fs", version = "=0.20.0", default-features = false, features = [
"webc-fs",
] }
wasmer = { version = "=5.0.4", path = "../api", default-features = false, features = [
wasmer = { version = "=5.0.5-rc1", path = "../api", default-features = false, features = [
"wamr",
"std",
] }
Expand Down
8 changes: 4 additions & 4 deletions lib/sys-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ repository.workspace = true
rust-version.workspace = true

[dependencies]
wasmer = { path = "../api", version = "=5.0.4", default-features = false, features = ["sys", "compiler"] }
wasmer-vm = { path = "../vm", version = "=5.0.4" }
wasmer-types = { path = "../types", version = "=5.0.4" }
wasmer = { path = "../api", version = "=5.0.5-rc1", default-features = false, features = ["sys", "compiler"] }
wasmer-vm = { path = "../vm", version = "=5.0.5-rc1" }
wasmer-types = { path = "../types", version = "=5.0.5-rc1" }
region = { version = "3.0" }
tracing = "0.1.37"

Expand All @@ -23,7 +23,7 @@ libc.workspace = true

[dev-dependencies]
wasmer-wasix.workspace = true
wasmer = { path = "../api", version = "=5.0.4", default-features = false, features = ["sys", "compiler", "cranelift"] }
wasmer = { path = "../api", version = "=5.0.5-rc1", 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/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ version.workspace = true
[dependencies]
memoffset.workspace = true
dashmap.workspace = true
wasmer-types = { path = "../types", version = "=5.0.4" }
wasmer-types = { path = "../types", version = "=5.0.5-rc1" }
libc.workspace = true
indexmap = { workspace = true }
thiserror = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/wai-bindgen-wasmer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ once_cell = "1.13"
thiserror = "1.0"
tracing-lib = { version = "0.1.26", optional = true, package = "tracing" }
wai-bindgen-wasmer-impl = { version = "0.2.2" }
wasmer = { version = "=5.0.4", path = "../api", default-features = false }
wasmer = { version = "=5.0.5-rc1", path = "../api", default-features = false }

[features]
# Enables generated code to emit events via the `tracing` crate whenever wasm is
Expand Down
6 changes: 3 additions & 3 deletions lib/wasi-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ rust-version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
wasmer = { default-features = false, path = "../api", version = "=5.0.4" }
wasmer-types = { path = "../types", version = "=5.0.4" }
wasmer-derive = { path = "../derive", version = "=5.0.4" }
wasmer = { default-features = false, path = "../api", version = "=5.0.5-rc1" }
wasmer-types = { path = "../types", version = "=5.0.5-rc1" }
wasmer-derive = { path = "../derive", version = "=5.0.5-rc1" }
wai-bindgen-gen-rust = "0.2.1"
wai-bindgen-rust = { version = "0.2.1", default-features = false, features = [
"macros",
Expand Down
Loading

0 comments on commit 4d5a913

Please sign in to comment.