945dda0c24
* Bumped up version numbers to 1.0.1 * Updated changelog attempting to use new format
50 lines
1.9 KiB
TOML
50 lines
1.9 KiB
TOML
[package]
|
|
name = "nym-socks5-client"
|
|
version = "1.0.1"
|
|
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>"]
|
|
edition = "2021"
|
|
rust-version = "1.56"
|
|
|
|
[lib]
|
|
name = "nym_socks5"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
clap = "2.33.0"
|
|
dirs = "3.0" # for determining default store directories in config
|
|
dotenv = "0.15.0"
|
|
futures = "0.3"
|
|
log = "0.4"
|
|
pin-project = "1.0"
|
|
pretty_env_logger = "0.4"
|
|
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
|
|
serde = { version = "1.0", features = ["derive"] } # for config serialization/deserialization
|
|
snafu = "0.6"
|
|
tokio = { version = "1.4", features = ["rt-multi-thread", "net", "signal"] }
|
|
url = "2.2"
|
|
|
|
# internal
|
|
client-core = { path = "../client-core" }
|
|
coconut-interface = { path = "../../common/coconut-interface", optional = true }
|
|
credentials = { path = "../../common/credentials", optional = true }
|
|
credential-storage = { path = "../../common/credential-storage" }
|
|
config = { path = "../../common/config" }
|
|
crypto = { path = "../../common/crypto" }
|
|
gateway-client = { path = "../../common/client-libs/gateway-client" }
|
|
gateway-requests = { path = "../../gateway/gateway-requests" }
|
|
nymsphinx = { path = "../../common/nymsphinx" }
|
|
ordered-buffer = { path = "../../common/socks5/ordered-buffer" }
|
|
socks5-requests = { path = "../../common/socks5/requests" }
|
|
topology = { path = "../../common/topology" }
|
|
pemstore = { path = "../../common/pemstore" }
|
|
proxy-helpers = { path = "../../common/socks5/proxy-helpers" }
|
|
validator-client = { path = "../../common/client-libs/validator-client", features = ["nymd-client"] }
|
|
version-checker = { path = "../../common/version-checker" }
|
|
network-defaults = { path = "../../common/network-defaults" }
|
|
|
|
[features]
|
|
coconut = ["coconut-interface", "credentials", "gateway-requests/coconut", "gateway-client/coconut", "credentials/coconut", "client-core/coconut"]
|
|
eth = []
|
|
|
|
[build-dependencies]
|
|
vergen = { version = "5", default-features = false, features = ["build", "git", "rustc", "cargo"] } |