7b2036bd33
* Merge branch 'develop' into feature/socks5-no-core common/client-libs/directory-client/models/src/presence/topology.rs * More diagnostics * WIP commit, not properly multithreaded * WIP, now sort of multithreaded but errors all over the place * Replaced expect with a return * Adding abort on panic * Removing a few noisy prints * Another ack-related expect replaced * Moved profile.dev annotation to workspace cargo.toml * Semi-stabilised socks * Assigning connection shared key post registration (#309) * Sending return address with connect request * WIP commit * Reading all available data on reader + removed duplicate code Co-authored-by: jstuczyn <jedrzej.stuczynski@gmail.com>
16 lines
451 B
TOML
16 lines
451 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"
|
|
# no need for any features as `AsyncRead` is always available
|
|
tokio = { version = "0.2", features = [] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "0.2", features = ["rt-threaded", "macros"] }
|
|
tokio-test = "0.2" |