async_executors 0.6.0

Implements Spawn, SpawnLocal and SpawnHandle for commonly used executors.
Documentation
#[ cfg( feature = "tokio_ct"     ) ] mod tokio_ct;
#[ cfg( feature = "tokio_ct"     ) ] pub use tokio_ct::*;
#[ cfg( feature = "tokio_ct"     ) ] mod tokio_ct_builder;
#[ cfg( feature = "tokio_ct"     ) ] pub use tokio_ct_builder::*;

#[ cfg( feature = "tokio_tp"     ) ] mod tokio_tp;
#[ cfg( feature = "tokio_tp"     ) ] mod tokio_tp_builder;
#[ cfg( feature = "tokio_tp"     ) ] pub use tokio_tp::*;
#[ cfg( feature = "tokio_tp"     ) ] pub use tokio_tp_builder::*;

#[ cfg( feature = "async_global" ) ] mod async_global;
#[ cfg( feature = "async_global" ) ] pub use async_global::*;

#[ cfg( feature = "async_std"    ) ] mod async_std;
#[ cfg( feature = "async_std"    ) ] pub use async_std::*;

#[ cfg( feature = "glommio"      ) ] mod glommio_ct;
#[ cfg( feature = "glommio"      ) ] pub use glommio_ct::*;

#[ cfg( feature = "bindgen"      ) ] mod bindgen;
#[ cfg( feature = "bindgen"      ) ] pub use bindgen::*;

#[ cfg( feature = "localpool"    ) ] mod localpool;
#[ cfg( feature = "localpool"    ) ] pub use localpool::*;

#[ cfg( feature = "threadpool"   ) ] mod threadpool;
#[ cfg( feature = "threadpool"   ) ] pub use threadpool::*;

#[ cfg( feature = "tracing"      ) ] mod tracing;