61 lines
2.5 KiB
TOML
61 lines
2.5 KiB
TOML
[package]
|
|
name = "nym-cli-commands"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
base64 = { workspace = true }
|
|
bip39 = { workspace = true }
|
|
bs58 = { workspace = true }
|
|
comfy-table = { workspace = true }
|
|
cfg-if = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
csv = { workspace = true }
|
|
cw-utils = { workspace = true }
|
|
futures = { workspace = true }
|
|
handlebars = { workspace = true }
|
|
humantime-serde = { workspace = true }
|
|
inquire = { workspace = true }
|
|
k256 = { workspace = true, features = ["ecdsa", "sha256"] }
|
|
log = { workspace = true }
|
|
rand = { workspace = true, features = ["std"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
time = { workspace = true, features = ["parsing", "formatting"] }
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
toml = "0.5.6"
|
|
url = { workspace = true }
|
|
tap = { workspace = true }
|
|
zeroize = { workspace = true }
|
|
|
|
cosmrs = { workspace = true }
|
|
cosmwasm-std = { workspace = true }
|
|
|
|
nym-validator-client = { path = "../client-libs/validator-client" }
|
|
nym-bin-common = { path = "../../common/bin-common", features = ["output_format"] }
|
|
nym-crypto = { path = "../../common/crypto", features = ["asymmetric"] }
|
|
nym-network-defaults = { path = "../network-defaults" }
|
|
nym-contracts-common = { path = "../cosmwasm-smart-contracts/contracts-common" }
|
|
nym-bandwidth-controller = { path = "../../common/bandwidth-controller" }
|
|
nym-mixnet-contract-common = { path = "../cosmwasm-smart-contracts/mixnet-contract" }
|
|
nym-vesting-contract-common = { path = "../cosmwasm-smart-contracts/vesting-contract" }
|
|
nym-coconut-dkg-common = { path = "../cosmwasm-smart-contracts/coconut-dkg" }
|
|
nym-multisig-contract-common = { path = "../cosmwasm-smart-contracts/multisig-contract" }
|
|
nym-ecash-contract-common = { path = "../cosmwasm-smart-contracts/ecash-contract" }
|
|
nym-sphinx = { path = "../../common/nymsphinx" }
|
|
nym-client-core = { path = "../../common/client-core" }
|
|
nym-config = { path = "../../common/config" }
|
|
nym-credentials = { path = "../../common/credentials" }
|
|
nym-credentials-interface = { path = "../../common/credentials-interface" }
|
|
nym-credential-storage = { path = "../../common/credential-storage" }
|
|
nym-credential-utils = { path = "../../common/credential-utils" }
|
|
nym-id = { path = "../nym-id" }
|
|
|
|
nym-pemstore = { path = "../../common/pemstore", version = "0.3.0" }
|
|
nym-types = { path = "../../common/types" }
|