peachy 1.1.1

Peachy is a simple async task manager, similar to thread pool but cooler and for structs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod error;
pub mod manager;
#[cfg(feature = "mediator")]
pub mod mediator;
pub mod routine;

pub use peachy_macro as r#derive;

pub mod prelude {
    pub use crate::error::NoErr;
    pub use crate::manager::*;
    pub use crate::routine::*;
    pub use crate::derive::*;
}