43 lines
1.7 KiB
TOML
43 lines
1.7 KiB
TOML
[package]
|
|
name = "nym-socks5-client"
|
|
version = "1.1.34"
|
|
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.70"
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
bs58 = { workspace = true }
|
|
clap = { workspace = true, features = ["cargo", "derive"] }
|
|
log = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] } # for config serialization/deserialization
|
|
serde_json = { workspace = true }
|
|
tap = "1.0.1"
|
|
thiserror = { workspace = true }
|
|
tokio = { version = "1.24.1", features = ["rt-multi-thread", "net", "signal"] }
|
|
rand = "0.7.3"
|
|
time = { workspace = true }
|
|
url = { workspace = true }
|
|
zeroize = { workspace = true }
|
|
|
|
# internal
|
|
nym-bin-common = { path = "../../common/bin-common", features = ["output_format"] }
|
|
nym-client-core = { path = "../../common/client-core", features = ["fs-surb-storage", "fs-gateways-storage", "cli"] }
|
|
nym-config = { path = "../../common/config" }
|
|
nym-credentials = { path = "../../common/credentials" }
|
|
nym-crypto = { path = "../../common/crypto" }
|
|
nym-gateway-requests = { path = "../../gateway/gateway-requests" }
|
|
nym-credential-storage = { path = "../../common/credential-storage" }
|
|
nym-network-defaults = { path = "../../common/network-defaults" }
|
|
nym-sphinx = { path = "../../common/nymsphinx" }
|
|
nym-ordered-buffer = { path = "../../common/socks5/ordered-buffer" }
|
|
nym-pemstore = { path = "../../common/pemstore" }
|
|
nym-topology = { path = "../../common/topology" }
|
|
nym-socks5-client-core = { path = "../../common/socks5-client-core" }
|
|
nym-id = { path = "../../common/nym-id" }
|
|
|
|
[features]
|
|
default = []
|
|
eth = []
|