4587d5da26
* network-defaults: update cargo metadata * Add nym- prefix to network-defaults crate * Some manual updating * rustfmt
38 lines
1.3 KiB
TOML
38 lines
1.3 KiB
TOML
[package]
|
|
name = "nym-cli-commands"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
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"] }
|
|
cw-utils = { version = "0.13.4" }
|
|
handlebars = "3.0.1"
|
|
humantime-serde = "1.0"
|
|
k256 = { version = "0.10", features = ["ecdsa", "sha256"] }
|
|
log = { workspace = true }
|
|
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 = ["nyxd-client"] }
|
|
nym-network-defaults = { path = "../network-defaults" }
|
|
nym-mixnet-contract-common = { path = "../cosmwasm-smart-contracts/mixnet-contract" }
|
|
nym-vesting-contract-common = { path = "../cosmwasm-smart-contracts/vesting-contract" }
|
|
coconut-bandwidth-contract-common = { path = "../cosmwasm-smart-contracts/coconut-bandwidth-contract" }
|
|
coconut-dkg-common = { path = "../cosmwasm-smart-contracts/coconut-dkg" }
|
|
multisig-contract-common = { path = "../cosmwasm-smart-contracts/multisig-contract" }
|