f4dd9a915d
* Add Apache 2.0 to bunch of common crates * Allow some basic licenses * Add more licenses
28 lines
830 B
TOML
28 lines
830 B
TOML
[package]
|
|
name = "nym-cli"
|
|
version = "1.1.33"
|
|
authors.workspace = true
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
base64 = "0.13.0"
|
|
bs58 = "0.4"
|
|
clap = { workspace = true, features = ["derive"] }
|
|
clap_complete = "4.0"
|
|
clap_complete_fig = "4.0"
|
|
dotenvy = { workspace = true }
|
|
log = { workspace = true }
|
|
pretty_env_logger = "0.4"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1.11", features = [ "net", "rt-multi-thread", "macros", "signal"] }
|
|
bip39 = { workspace = true }
|
|
anyhow = "1"
|
|
tap = "1"
|
|
|
|
nym-cli-commands = { path = "../../common/commands" }
|
|
nym-bin-common = { path = "../../common/bin-common"}
|
|
nym-validator-client = { path = "../../common/client-libs/validator-client", features = ["http-client"] }
|
|
nym-network-defaults = { path = "../../common/network-defaults" }
|