22c59be82c
* changed last vers. checkout to master * corrected path of config * make binaries executable * docs: typescript.md - changing variables * docs: rust.md - changing variables * docs: vesting-contract.md - changing variables * docs: mixnet-contract.md - changing variables * docs: all variables changed * operators: all variables finished * dev-portal: mixnet-integration.md - variable changed * dev-portal: faq.md - variable changed * dev-portal: moredo.md up to date w NC default * dev-portal: telegram.md - added banner & minor fix * dev-portal: matrix.md - added banner * PR finished - ready for review and merge * removed all instances of platform_release_version var * removed all instances of platform_release_version var * changed version bumper script: removed platform_release_version references * changed comment * updating changelog and bumping versions --------- Co-authored-by: serinko <97586125+serinko@users.noreply.github.com> Co-authored-by: mfahampshire <maxhampshire@pm.me> Co-authored-by: mx <33262279+mfahampshire@users.noreply.github.com> Co-authored-by: benedettadavico <benedetta.davico@gmail.com>
27 lines
792 B
TOML
27 lines
792 B
TOML
[package]
|
|
name = "nym-cli"
|
|
version = "1.1.28"
|
|
authors.workspace = true
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
base64 = "0.13.0"
|
|
bs58 = "0.4"
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
clap_complete = "4.0"
|
|
clap_complete_fig = "4.0"
|
|
dotenvy = "0.15.6"
|
|
log = { workspace = true }
|
|
pretty_env_logger = "0.4"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1.11", features = [ "net", "rt-multi-thread", "macros", "signal"] }
|
|
bip39 = { workspace = true }
|
|
anyhow = "1"
|
|
tap = "1"
|
|
|
|
nym-cli-commands = { path = "../../common/commands" }
|
|
nym-bin-common = { path = "../../common/bin-common"}
|
|
nym-validator-client = { path = "../../common/client-libs/validator-client", features = ["http-client"] }
|
|
nym-network-defaults = { path = "../../common/network-defaults" }
|