[package] name = "nym-socks5-client" version = "1.1.41" authors = ["Dave Hrycyszyn "] 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 = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true, features = ["rt-multi-thread", "net", "signal"] } rand = { workspace = true } time = { workspace = true } url = { workspace = true } zeroize = { workspace = true } # internal nym-bin-common = { path = "../../common/bin-common", features = [ "output_format", "clap", ] } nym-client-core = { path = "../../common/client-core", features = [ "fs-credentials-storage", "fs-surb-storage", "fs-gateways-storage", "cli", ] } 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 = "../../common/gateway-requests" } nym-id = { path = "../../common/nym-id" } nym-network-defaults = { path = "../../common/network-defaults" } nym-ordered-buffer = { path = "../../common/socks5/ordered-buffer" } nym-pemstore = { path = "../../common/pemstore" } nym-socks5-client-core = { path = "../../common/socks5-client-core" } nym-sphinx = { path = "../../common/nymsphinx" } nym-topology = { path = "../../common/topology" } nym-validator-client = { path = "../../common/client-libs/validator-client", features = [ "http-client", ] } [features] default = [] eth = []