[package]
name = "arch-warp-cli"
description = "Scaffold, build, test, and deploy Archway Network Smart Contracts faster than ever before"
version = "0.3.0"
license = "MIT"
edition = "2021"
homepage = "https://archway-warp.github.io/"
repository = "https://github.com/archway-warp/warp-cli"
keywords = ["archway", "blockchain", "productivity", "smart-contracts", "cosmwasm"]
readme = "README.md"
[profile.dev]
opt-level = 3
lto = false
codegen-units = 24
panic = "abort"
strip = false
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"
strip = true
[dependencies]
clap = { version = "4.0.29", features = ["derive"] }
toml = "0.5.10"
serde = { version = "1.0.151", default-features = false, features = [ "derive" ] }
serde_json = "1.0.91"
thiserror = "1.0.38"
regex = "1.7.0"
rpassword = "7.2.0"
owo-colors = "3.5.0"
[[bin]]
name = "warp"
path = "src/main.rs"