5f4926dd49
* fixed all uses of deprecated clap methods * updated all uses of clap to 4.0 * unified obtaining build information * moved around the imports * Moved all nym-api arguments to ApiArgs and simplified parsing * Using common shutdown signal code * Using clap for parsing Vec<Url> * stricter validation of socks5-client arguments * ibid for the native client * ibid for the gateway * ibid for the mixnode * clippy
34 lines
1.0 KiB
TOML
34 lines
1.0 KiB
TOML
[package]
|
|
name = "nym-cli-commands"
|
|
version = "1.0.0"
|
|
authors = ["Nym Technologies SA"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
base64 = "0.13.0"
|
|
bip39 = "1.0.1"
|
|
bs58 = "0.4"
|
|
comfy-table = "6.0.0"
|
|
cfg-if = "1.0.0"
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
handlebars = "3.0.1"
|
|
humantime-serde = "1.0"
|
|
k256 = { version = "0.10", features = ["ecdsa", "sha256"] }
|
|
log = "0.4"
|
|
rand = {version = "0.6", features = ["std"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "1"
|
|
time = { version = "0.3.6", features = ["parsing", "formatting"] }
|
|
toml = "0.5.6"
|
|
url = "2.2"
|
|
tap = "1"
|
|
|
|
cosmrs = { git = "https://github.com/neacsu/cosmos-rust", branch = "neacsu/feegrant_support" }
|
|
cosmwasm-std = { version = "1.0.0" }
|
|
|
|
validator-client = { path = "../client-libs/validator-client", features = ["nymd-client"] }
|
|
network-defaults = { path = "../network-defaults" }
|
|
mixnet-contract-common = { path = "../cosmwasm-smart-contracts/mixnet-contract" }
|
|
vesting-contract-common = { path = "../cosmwasm-smart-contracts/vesting-contract" }
|