65a69b2cba
* socks5: signal shutdown on error * Mark as success * Tidy * Reduce wait to 5 sec * Replace unwrap with expect * Two more unwraps * Update changelog
16 lines
425 B
TOML
16 lines
425 B
TOML
[package]
|
|
name = "task"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
futures = "0.3"
|
|
log = "0.4"
|
|
thiserror = "1.0.37"
|
|
tokio = { version = "1.21.2", features = ["macros", "signal", "time", "sync"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.21.2", features = ["rt-multi-thread", "net", "signal", "test-util", "macros"] }
|