48 lines
1.6 KiB
TOML
48 lines
1.6 KiB
TOML
[package]
|
|
name = "nym-socks5-client-core"
|
|
description = "Core functionality of the Nym SOCKS client"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition = "2021"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
rust-version.workspace = true
|
|
readme.workspace = true
|
|
publish = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
dirs = { workspace = true }
|
|
futures = { workspace = true }
|
|
log = { workspace = true }
|
|
pin-project = { workspace = true }
|
|
rand = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
schemars = { workspace = true, features = ["preserve_order"] }
|
|
serde = { workspace = true, features = ["derive"] } # for config serialization/deserialization
|
|
tap = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "net", "signal"] }
|
|
url = { workspace = true }
|
|
|
|
nym-bandwidth-controller = { workspace = true }
|
|
nym-client-core = { workspace = true, features = ["fs-credentials-storage", "fs-surb-storage", "fs-gateways-storage"] }
|
|
nym-config = { workspace = true }
|
|
nym-contracts-common = { workspace = true }
|
|
nym-credential-storage = { workspace = true }
|
|
nym-mixnet-contract-common = { workspace = true }
|
|
nym-network-defaults = { workspace = true }
|
|
nym-service-providers-common = { workspace = true }
|
|
nym-socks5-proxy-helpers = { workspace = true }
|
|
nym-socks5-requests = { workspace = true }
|
|
nym-sphinx = { workspace = true }
|
|
nym-task = { workspace = true }
|
|
nym-validator-client = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|