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
55 lines
2.4 KiB
TOML
55 lines
2.4 KiB
TOML
[package]
|
|
name = "nym-client"
|
|
version = "1.1.23"
|
|
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 = "0.3" # 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 = "2.2"
|
|
|
|
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 = "1.0.34"
|
|
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]
|