7e7072258d
Co-authored-by: tommy <tommyvez@protonmail.com>
33 lines
1.0 KiB
TOML
33 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 = "3.2", 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"
|
|
|
|
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" }
|