Cargo.toml

 1[package]
 2name = "scheduler"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/scheduler.rs"
 8
 9[dependencies]
10anyhow = "1.0"
11async-task = "4.5"
12futures = "0.3"
13rand = { version = "0.8", features = ["small_rng"] }
14rand_chacha = "0.3"
15parking_lot = "0.12"
16
17[features]
18test-support = []