34 lines
1.0 KiB
TOML
34 lines
1.0 KiB
TOML
[package]
|
|
name = "nym-cli"
|
|
version = "1.1.78"
|
|
authors.workspace = true
|
|
edition = "2021"
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
base64 = { workspace = true }
|
|
bs58 = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
clap_complete = { workspace = true }
|
|
clap_complete_fig = { workspace = true }
|
|
dotenvy = { workspace = true }
|
|
inquire = { workspace = true }
|
|
log = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["net", "rt-multi-thread", "macros", "signal"] }
|
|
bip39 = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tap = { workspace = true }
|
|
|
|
nym-cli-commands = { path = "../../common/commands" }
|
|
nym-bin-common = { workspace = true, features = ["basic_tracing"] }
|
|
nym-validator-client = { workspace = true, features = ["http-client"] }
|
|
nym-network-defaults = { workspace = true }
|
|
|
|
[package.metadata.deb]
|
|
name = "nym-cli"
|
|
maintainer-scripts = "debian"
|
|
systemd-units = { enable = false }
|