9efc195046
* Updated built dependency So that it wouldn't fail on nwindows * Concurrent RW client-side * Draft of a ProxyRunner * Super experimental proxy runner for provider Very much WIP * Extracting shared code + cleanup * Logging cleanup * Removed redundant close request
19 lines
646 B
TOML
19 lines
646 B
TOML
[package]
|
|
name = "utils"
|
|
version = "0.1.0"
|
|
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bytes = "0.5"
|
|
# TODO: "time" feature is only required for the delay loop which is going to go away very soon!
|
|
tokio = { version = "0.2", features = [ "tcp", "io-util", "sync", "macros", "time" ] }
|
|
futures = "0.3"
|
|
log = "0.4"
|
|
simple-socks5-requests = { path = "../../service-providers/simple-socks5/simple-socks5-requests" }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "0.2", features = ["rt-threaded"] }
|
|
tokio-test = "0.2" |