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>
56 lines
2.3 KiB
TOML
56 lines
2.3 KiB
TOML
[package]
|
|
name = "nym-socks5-client"
|
|
version = "1.1.4"
|
|
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>"]
|
|
description = "A SOCKS5 localhost proxy that converts incoming messages to Sphinx and sends them to a Nym address"
|
|
edition = "2021"
|
|
rust-version = "1.56"
|
|
|
|
[lib]
|
|
name = "nym_socks5"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.0", features = ["cargo", "derive"] }
|
|
dirs = "4.0"
|
|
futures = "0.3"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4"
|
|
pin-project = "1.0"
|
|
pretty_env_logger = "0.4"
|
|
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
|
|
serde = { version = "1.0", features = ["derive"] } # for config serialization/deserialization
|
|
serde_json = "1.0.89"
|
|
tap = "1.0.1"
|
|
thiserror = "1.0.34"
|
|
tokio = { version = "1.21.2", features = ["rt-multi-thread", "net", "signal"] }
|
|
url = "2.2"
|
|
|
|
# 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" }
|
|
ordered-buffer = { path = "../../common/socks5/ordered-buffer" }
|
|
pemstore = { path = "../../common/pemstore" }
|
|
proxy-helpers = { path = "../../common/socks5/proxy-helpers" }
|
|
socks5-requests = { path = "../../common/socks5/requests" }
|
|
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" }
|
|
|
|
[features]
|
|
coconut = ["coconut-interface", "credentials", "gateway-requests/coconut", "gateway-client/coconut", "credentials/coconut", "client-core/coconut"]
|
|
eth = []
|