fumio_pool/
lib.rs

1//! Single-threaded pool of (non-`Send`) futures
2
3#![doc(html_root_url = "https://docs.rs/fumio-pool/0.1.0")]
4#![warn(
5	missing_debug_implementations,
6	missing_docs,
7	nonstandard_style,
8	rust_2018_idioms,
9	clippy::pedantic,
10	clippy::nursery,
11	clippy::cargo,
12)]
13#![allow(
14	clippy::module_name_repetitions, // often hidden modules and reexported
15	clippy::if_not_else, // `... != 0` is a positive condition
16	clippy::multiple_crate_versions, // not useful
17)]
18
19mod pool;
20pub use pool::{LocalPool, LocalSpawner};
21
22mod current;
23pub use current::{current_local};