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>
55 lines
2.5 KiB
TOML
55 lines
2.5 KiB
TOML
[package]
|
|
name = "nym-client"
|
|
version = "1.1.28"
|
|
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>", "Jędrzej Stuczyński <andrew@nymtech.net>"]
|
|
description = "Implementation of the Nym Client"
|
|
edition = "2021"
|
|
rust-version = "1.65"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "nym_client"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
# dependencies to review:
|
|
futures = { workspace = true } # bunch of futures stuff, however, now that I think about it, it could perhaps be completely removed
|
|
# the AsyncRead, AsyncWrite, Stream, Sink, etc. traits could be used from tokio
|
|
# channels should really be replaced with crossbeam due to that implementation being more efficient
|
|
# and the single instance of abortable we have should really be refactored anyway
|
|
url = { workspace = true }
|
|
|
|
clap = { version = "4.0", features = ["cargo", "derive"] }
|
|
dirs = "4.0"
|
|
lazy_static = "1.4.0"
|
|
log = { workspace = true } # self explanatory
|
|
pretty_env_logger = "0.4" # for formatting log messages
|
|
rand = { version = "0.7.3", features = ["wasm-bindgen"] } # rng-related traits + some rng implementation to use
|
|
serde = { workspace = true, features = ["derive"] } # for config serialization/deserialization
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tap = "1.0.1"
|
|
tokio = { version = "1.24.1", features = ["rt-multi-thread", "net", "signal"] } # async runtime
|
|
tokio-tungstenite = "0.14" # websocket
|
|
|
|
## internal
|
|
nym-bandwidth-controller = { path = "../../common/bandwidth-controller" }
|
|
nym-bin-common = { path = "../../common/bin-common", features = ["output_format"] }
|
|
nym-client-core = { path = "../../common/client-core", features = ["fs-surb-storage"] }
|
|
nym-coconut-interface = { path = "../../common/coconut-interface" }
|
|
nym-config = { path = "../../common/config" }
|
|
nym-credential-storage = { path = "../../common/credential-storage" }
|
|
nym-credentials = { path = "../../common/credentials" }
|
|
nym-crypto = { path = "../../common/crypto" }
|
|
nym-gateway-requests = { path = "../../gateway/gateway-requests" }
|
|
nym-network-defaults = { path = "../../common/network-defaults" }
|
|
nym-sphinx = { path = "../../common/nymsphinx" }
|
|
nym-pemstore = { path = "../../common/pemstore" }
|
|
nym-task = { path = "../../common/task" }
|
|
nym-topology = { path = "../../common/topology" }
|
|
nym-validator-client = { path = "../../common/client-libs/validator-client", features = ["http-client"] }
|
|
nym-client-websocket-requests = { path = "websocket-requests" }
|
|
|
|
[dev-dependencies]
|