| Crates.io | cronox |
| lib.rs | cronox |
| version | 0.0.5 |
| created_at | 2025-09-06 19:25:51.358256+00 |
| updated_at | 2025-09-10 15:27:34.051105+00 |
| description | A elegant and efficient asynchronous scheduler for Rust |
| homepage | |
| repository | https://github.com/KABBOUCHI/cronox |
| max_upload_size | |
| id | 1827392 |
| size | 43,527 |
cargo add cronox
let mut scheduler = Scheduler::new();
scheduler.call(async || {}).every_second();
scheduler.call(async || {}).every_five_seconds();
scheduler.call(async || {}).every_minute();
scheduler.await;