21 lines
422 B
TOML
21 lines
422 B
TOML
[package]
|
|
name = "executor"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
futures = "0.3"
|
|
metric = { path = "../metric" }
|
|
parking_lot = "0.12"
|
|
snafu = "0.9"
|
|
tokio = { version = "1.50" }
|
|
tokio_metrics_bridge = { path = "../tokio_metrics_bridge" }
|
|
tokio_watchdog = { path = "../tokio_watchdog" }
|
|
tracing = { workspace = true }
|
|
|