ntex_neon/
lib.rs

1//! The async runtime for ntex.
2
3#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
4// #![warn(missing_docs)]
5
6pub mod driver;
7pub mod pool;
8mod rt;
9
10pub use async_task::Task;
11pub use rt::{spawn, spawn_blocking, Handle, JoinHandle, Runtime, RuntimeBuilder};