c7eb3bdb7b
dont build netstack in CI additional rust 2024 fixes fixes removed temp.rs first round of cleanup removed duplicated NS types moved gateway probe to the monorepo
57 lines
1.9 KiB
TOML
57 lines
1.9 KiB
TOML
[package]
|
|
name = "nym-socks5-client"
|
|
version = "1.1.64"
|
|
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.85"
|
|
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",
|
|
"basic_tracing",
|
|
] }
|
|
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 = []
|