596bc76cc6
* Updated all non-breaking dependencies * Updated common/crypto dependencies * Updated all tokio [and associated] dependencies to most recent version * Bumped version of rand_distr * Fixed api changes in tests * Made clippy happier about the acronym * Fixed the type while trying to make clippy even happier * nightly cargo fmt
22 lines
993 B
TOML
22 lines
993 B
TOML
[package]
|
|
name = "proxy-helpers"
|
|
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 = "1.0"
|
|
tokio = { version = "1.4", features = [ "net", "io-util", "sync", "macros", "time" ] }
|
|
tokio-util = { version = "0.6", features = [ "io" ] } # reason for getting this guy is to to able to port to tokio 1.X more quickly by being able to use
|
|
# their `read_buf` [from the util crate] replacement rather than having to rethink/reimplement `AvailableReader` with the new AsyncRead trait definition.
|
|
# In the long run, the dependency should probably get removed in favour of pure-tokio implementation, but for time being it's fine.
|
|
futures = "0.3"
|
|
log = "0.4"
|
|
socks5-requests = { path = "../requests" }
|
|
ordered-buffer = { path = "../ordered-buffer" }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.4", features = ["rt-multi-thread"] }
|
|
tokio-test = "0.4" |