29091aab8e
* Renaming all instances of nymd to nyxd * Might as well get the changelogs too * Making it clearer that an ApiClient is a NymApiClient * Lining up config templates with struct keys on gateway * Changed the last references to validator_urls to nyxd_urls * Fixed up a few type errors after refactoring * Changed the changelog * Fixed typo in changelog * Further instances of renaming 'nymd' + introducing additional clap aliases * updated environmental variables and allowed usage of deprecated variants * missing occurences of coconut-locked environmental variables Co-authored-by: Jędrzej Stuczyński <jedrzej.stuczynski@gmail.com>
63 lines
2.8 KiB
TOML
63 lines
2.8 KiB
TOML
[package]
|
|
name = "nym-client"
|
|
version = "1.1.4"
|
|
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 = "0.4" # 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 = { version = "1.0.104", features = ["derive"] } # for config serialization/deserialization
|
|
serde_json = "1.0"
|
|
thiserror = "1.0.34"
|
|
tap = "1.0.1"
|
|
tokio = { version = "1.21.2", features = ["rt-multi-thread", "net", "signal"] } # async runtime
|
|
tokio-tungstenite = "0.14" # websocket
|
|
|
|
## internal
|
|
build-information = { path = "../../common/build-information" }
|
|
client-core = { path = "../client-core", features = ["fs-surb-storage"] }
|
|
client-connections = { path = "../../common/client-connections" }
|
|
coconut-interface = { path = "../../common/coconut-interface", optional = true }
|
|
config = { path = "../../common/config" }
|
|
completions = { path = "../../common/completions" }
|
|
credential-storage = { path = "../../common/credential-storage" }
|
|
credentials = { path = "../../common/credentials", optional = true }
|
|
crypto = { path = "../../common/crypto" }
|
|
logging = { path = "../../common/logging"}
|
|
gateway-client = { path = "../../common/client-libs/gateway-client" }
|
|
gateway-requests = { path = "../../gateway/gateway-requests" }
|
|
network-defaults = { path = "../../common/network-defaults" }
|
|
nymsphinx = { path = "../../common/nymsphinx" }
|
|
pemstore = { path = "../../common/pemstore" }
|
|
task = { path = "../../common/task" }
|
|
topology = { path = "../../common/topology" }
|
|
validator-client = { path = "../../common/client-libs/validator-client", features = ["nyxd-client"] }
|
|
version-checker = { path = "../../common/version-checker" }
|
|
websocket-requests = { path = "websocket-requests" }
|
|
|
|
[features]
|
|
coconut = ["coconut-interface", "credentials", "credentials/coconut", "gateway-requests/coconut", "gateway-client/coconut", "client-core/coconut"]
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0" # for the "textsend" example
|