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"
12rand = { version = "0.8", features = ["small_rng"] }
13rand_chacha = "0.3"
14parking_lot = "0.12"
15
16[features]
17test-support = []