20 lines
695 B
TOML
20 lines
695 B
TOML
[package]
|
|
name = "nym-socks5-requests"
|
|
version = "0.1.0"
|
|
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>"]
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bincode = { workspace = true }
|
|
log = { workspace = true }
|
|
nym-exit-policy = { path = "../../../common/exit-policy"}
|
|
nym-service-providers-common = { path = "../../../service-providers/common" }
|
|
nym-sphinx-addressing = { path = "../../../common/nymsphinx/addressing" }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tap = { workspace = true }
|
|
thiserror = { workspace = true }
|