mirror of
https://github.com/mii443/wasmer.git
synced 2025-09-03 16:09:20 +00:00
@ -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 = [
|
||||
|
Reference in New Issue
Block a user