cronox

Crates.iocronox
lib.rscronox
version0.0.5
created_at2025-09-06 19:25:51.358256+00
updated_at2025-09-10 15:27:34.051105+00
descriptionA elegant and efficient asynchronous scheduler for Rust
homepage
repositoryhttps://github.com/KABBOUCHI/cronox
max_upload_size
id1827392
size43,527
Georges KABBOUCHI (KABBOUCHI)

documentation

README

cronox

Setup

cargo add cronox

Usage

let mut scheduler = Scheduler::new();

scheduler.call(async || {}).every_second();
scheduler.call(async || {}).every_five_seconds();
scheduler.call(async || {}).every_minute();

scheduler.await;
Commit count: 9

cargo fmt