fast-steal 6.5.2

特别快的多线程任务调度器,支持超细颗粒度的任务窃取
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::*;