toy_async_runtime/
lib.rs

1//! Toy library to implement an async library for rust!
2//!
3//! This code is hevely based on https://github.com/mgattozzi/whorl but with
4//! another scope in mind, that is to provide a toy library that the people can
5//! use with toy program.
6//!
7//! In addition, from this crate the user can consider to learn more on the async
8//! programming, because there is a lot to learn and a lot to contribute.
9// TODO: move feature inside a std :)
10pub mod features;
11pub mod lazy;
12pub mod runitime;
13pub mod spawner;
14pub mod task;