516561dcf9
* 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
47 lines
1.9 KiB
TOML
47 lines
1.9 KiB
TOML
[package]
|
|
name = "nym-cli-commands"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
base64 = "0.13.0"
|
|
bip39 = { workspace = true }
|
|
bs58 = "0.4"
|
|
comfy-table = "6.0.0"
|
|
cfg-if = "1.0.0"
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
cw-utils = { workspace = true }
|
|
handlebars = "3.0.1"
|
|
humantime-serde = "1.0"
|
|
k256 = { workspace = true, features = ["ecdsa", "sha256"] }
|
|
log = { workspace = true }
|
|
rand = {version = "0.6", features = ["std"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
thiserror = "1"
|
|
time = { version = "0.3.6", features = ["parsing", "formatting"] }
|
|
toml = "0.5.6"
|
|
url = "2.2"
|
|
tap = "1"
|
|
|
|
cosmrs = { workspace = true }
|
|
cosmwasm-std = { workspace = true }
|
|
|
|
nym-validator-client = { path = "../client-libs/validator-client", features = ["signing", "http-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-mixnet-contract-common = { path = "../cosmwasm-smart-contracts/mixnet-contract" }
|
|
nym-vesting-contract-common = { path = "../cosmwasm-smart-contracts/vesting-contract" }
|
|
nym-coconut-bandwidth-contract-common = { path = "../cosmwasm-smart-contracts/coconut-bandwidth-contract" }
|
|
nym-coconut-dkg-common = { path = "../cosmwasm-smart-contracts/coconut-dkg" }
|
|
nym-multisig-contract-common = { path = "../cosmwasm-smart-contracts/multisig-contract" }
|
|
nym-service-provider-directory-common = { path = "../cosmwasm-smart-contracts/service-provider-directory" }
|
|
nym-name-service-common = { path = "../cosmwasm-smart-contracts/name-service" }
|
|
nym-sphinx = { path = "../../common/nymsphinx" }
|
|
|
|
nym-pemstore = { path = "../../common/pemstore", version = "0.3.0" }
|
|
nym-types = { path = "../../common/types" }
|