fast-steal 6.5.4

An ultra-fast multi-threaded task scheduler with fine-grained work stealing
Documentation
1
2
3
4
5
6
7
8
9
10
#![no_std]
#![doc = include_str!("../README.md")]

mod executor;
mod task;
mod task_queue;

pub use executor::*;
pub use task::*;
pub use task_queue::*;