Release 4.2.4 (#4337)

This commit is contained in:
Arshia001
2023-11-30 21:16:20 +03:30
committed by GitHub
parent b38aa5c776
commit 4d63febf9d
34 changed files with 252 additions and 218 deletions

View File

@ -20,8 +20,8 @@ path = "src/bin/wasmer_compiler.rs"
doc = false
[dependencies]
wasmer-compiler = { version = "=4.2.3", path = "../compiler", features = ["compiler"] }
wasmer-types = { version = "=4.2.3", path = "../types" }
wasmer-compiler = { version = "=4.2.4", path = "../compiler", features = ["compiler"] }
wasmer-types = { version = "=4.2.4", path = "../types" }
is-terminal = "0.4.7"
colored = "2.0"
anyhow = "1.0"
@ -36,13 +36,13 @@ log = { version = "0.4", optional = true }
target-lexicon = { version = "0.12", features = ["std"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
wasmer-compiler-singlepass = { version = "=4.2.3", path = "../compiler-singlepass", optional = true }
wasmer-compiler-cranelift = { version = "=4.2.3", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=4.2.4", path = "../compiler-singlepass", optional = true }
wasmer-compiler-cranelift = { version = "=4.2.4", path = "../compiler-cranelift", optional = true }
clap = { version = "4.2.7", features = ["derive", "env"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasmer-compiler-singlepass = { version = "=4.2.3", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] }
wasmer-compiler-cranelift = { version = "=4.2.3", path = "../compiler-cranelift", optional = true, default-features = false, features = ["wasm"] }
wasmer-compiler-singlepass = { version = "=4.2.4", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] }
wasmer-compiler-cranelift = { version = "=4.2.4", path = "../compiler-cranelift", optional = true, default-features = false, features = ["wasm"] }
# NOTE: Must use different features for clap because the "color" feature does not
# work on wasi, due to the anstream dependency not compiling.
clap = { version = "4.2.7", default-features = false, features = [