[package] name = "wasmer-deploy-client-cli" description = "CLI client for Wasmer Deploy" version = "0.1.1" # NOTE: Using a distinc license for the CLI, since it might be different from # other crates. license = "MIT" readme = "README.md" edition.workspace = true authors.workspace = true [[bin]] name = "wasmer-deploy" path = "src/main.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] wasmer-api = { version = "0.1.0-alpha.1", path = "../api" } wasmer-deploy-schema = { version = "0.1.0-alpha.1", path = "../schema" } anyhow = { workspace = true, features = ["backtrace"] } clap = { workspace = true, features = ["derive", "env"] } futures = { workspace = true } serde = { workspace = true } tokio = { workspace = true, features = ["rt-multi-thread", "macros"] } reqwest = { workspace = true, default-features = false, features = ["rustls-tls", "gzip"] } toml.workspace = true serde_json.workspace = true url.workspace = true webc.workspace = true serde_yaml.workspace = true wasmer-registry = { version = "4.2.0", features = ["build-package"] } wasmer-toml = "0.6.0" dialoguer = "0.10.3" is-terminal = "0.4.3" semver = "1.0.17" comfy-table = "6.1.4"