This is a toy futures executor / async runtime built to better understand the internals
of how futures work in Rust. The name, of course, being inspired by tokio.
TL;DR:
cargo run --example tasksThe file src/lib.rs contains the runtime and task
definitions, while examples/tasks.rs contains
a test application.
src/delay.rs contains an implementation for Delay,
a make-shift awaitable delay function.