Files
nym/tools/nym-cli/Cargo.toml
T
Jędrzej Stuczyński 516561dcf9 Feature/wasm nyxd client (#3708)
* separated signing and nyxd-client features

* updated cosmrs to the most recent version

* using tendermint_rpc directly for the Client trait

* fixed rest of the codebase

* removed nyxd-client feature

* export more types

* clippy that seems to have been skipped in makefile
2023-07-26 15:49:45 +01:00

27 lines
792 B
TOML

[package]
name = "nym-cli"
version = "1.1.23"
authors.workspace = true
edition = "2021"
[dependencies]
base64 = "0.13.0"
bs58 = "0.4"
clap = { version = "4.0", features = ["derive"] }
clap_complete = "4.0"
clap_complete_fig = "4.0"
dotenvy = "0.15.6"
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" }