Release 4.0.0-alpha.1 (#3912)

* Release 4.0.0-alpha.1
This commit is contained in:
ptitSeb
2023-05-25 17:30:02 +02:00
committed by GitHub
parent e89b313450
commit 36b077d34b
38 changed files with 294 additions and 244 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "wasmer-compiler-cli"
version = "3.3.0"
version = "4.0.0-alpha.1"
description = "Wasmer Compiler CLI"
categories = ["wasm", "command-line-interface"]
keywords = ["wasm", "webassembly", "cli"]
@ -18,8 +18,8 @@ path = "src/bin/wasmer_compiler.rs"
doc = false
[dependencies]
wasmer-compiler = { version = "=3.3.0", path = "../compiler", features = ["compiler"] }
wasmer-types = { version = "=3.3.0", path = "../types" }
wasmer-compiler = { version = "=4.0.0-alpha.1", path = "../compiler", features = ["compiler"] }
wasmer-types = { version = "=4.0.0-alpha.1", path = "../types" }
atty = "0.2"
colored = "2.0"
anyhow = "1.0"
@ -34,13 +34,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 = "=3.3.0", path = "../compiler-singlepass", optional = true }
wasmer-compiler-cranelift = { version = "=3.3.0", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=4.0.0-alpha.1", path = "../compiler-singlepass", optional = true }
wasmer-compiler-cranelift = { version = "=4.0.0-alpha.1", path = "../compiler-cranelift", optional = true }
clap = { version = "4.2.7", features = ["derive", "env"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasmer-compiler-singlepass = { version = "=3.3.0", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] }
wasmer-compiler-cranelift = { version = "=3.3.0", path = "../compiler-cranelift", optional = true, default-features = false, features = ["wasm"] }
wasmer-compiler-singlepass = { version = "=4.0.0-alpha.1", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] }
wasmer-compiler-cranelift = { version = "=4.0.0-alpha.1", 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 = [