7b71775e08
* WIP: initial work * wupwup * WIP: experiments * Move topology provider and requests to own crate * Make sure we use the new crate everywhere * Sort Cargo.toml * Extract out some functions in geo_aware_provider * rustfmt * Add CountryGroup type * Assign unknown as well * wipwip * Add command line flag to socks5-client * Use geo-aware mixnode selection in nym-connect when in medium mode * rustfmt * clippy * Fix nym-connect build * wasm fix * Spelling
38 lines
1.4 KiB
TOML
38 lines
1.4 KiB
TOML
[package]
|
|
name = "nym-socks5-client-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dirs = "4.0"
|
|
futures = "0.3"
|
|
log = { workspace = true }
|
|
pin-project = "1.0"
|
|
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
|
|
reqwest = "0.11.4"
|
|
schemars = { version = "0.8", features = ["preserve_order"] }
|
|
serde = { workspace = true, features = ["derive"] } # for config serialization/deserialization
|
|
tap = "1.0.1"
|
|
thiserror = "1.0.34"
|
|
tokio = { version = "1.24.1", features = ["rt-multi-thread", "net", "signal"] }
|
|
url = "2.2"
|
|
|
|
nym-bandwidth-controller = { path = "../../common/bandwidth-controller" }
|
|
nym-client-core = { path = "../client-core", features = ["fs-surb-storage"] }
|
|
nym-config = { path = "../config" }
|
|
nym-contracts-common = { path = "../cosmwasm-smart-contracts/contracts-common" }
|
|
nym-credential-storage = { path = "../credential-storage" }
|
|
nym-mixnet-contract-common = { path = "../cosmwasm-smart-contracts/mixnet-contract" }
|
|
nym-network-defaults = { path = "../network-defaults" }
|
|
nym-service-providers-common = { path = "../../service-providers/common" }
|
|
nym-socks5-proxy-helpers = { path = "../socks5/proxy-helpers" }
|
|
nym-socks5-requests = { path = "../socks5/requests" }
|
|
nym-sphinx = { path = "../nymsphinx" }
|
|
nym-task = { path = "../task" }
|
|
nym-validator-client = { path = "../client-libs/validator-client" }
|
|
|
|
[features]
|
|
default = []
|