f4dd9a915d
* Add Apache 2.0 to bunch of common crates * Allow some basic licenses * Add more licenses
55 lines
2.3 KiB
TOML
55 lines
2.3 KiB
TOML
[package]
|
|
name = "nym-cli-commands"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
base64 = "0.13.0"
|
|
bip39 = { workspace = true }
|
|
bs58 = "0.4"
|
|
comfy-table = "6.0.0"
|
|
cfg-if = "1.0.0"
|
|
clap = { workspace = true, 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 = { workspace = true }
|
|
time = { workspace = true, features = ["parsing", "formatting"] }
|
|
toml = "0.5.6"
|
|
url = { workspace = true }
|
|
tap = "1"
|
|
|
|
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-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-client-core = { path = "../../common/client-core" }
|
|
nym-config = { path = "../../common/config" }
|
|
nym-credentials = { path = "../../common/credentials" }
|
|
nym-credential-storage = { path = "../../common/credential-storage" }
|
|
nym-credential-utils = { path = "../../common/credential-utils" }
|
|
|
|
nym-pemstore = { path = "../../common/pemstore", version = "0.3.0" }
|
|
nym-types = { path = "../../common/types" }
|