f15ecdda06
* mixnode: add graceful notification to most tasks * Add note about remaining work * task/shutdown: add shutdown timer * changelog: add entry for shutdown * mixnode: revert some temp changes * common/task: make sure to use latest tokio
15 lines
445 B
TOML
15 lines
445 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]
|
|
log = "0.4"
|
|
tokio = { version = "1.19.1", features = ["rt-multi-thread", "net", "signal"] }
|
|
tokio-util = { version = "0.7.3", features = ["codec"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.19.1", features = ["rt-multi-thread", "net", "signal", "test-util", "macros"] }
|