#![cfg_attr(feature = "nightly", feature(never_type))]
pub mod signal;
pub mod thread;
pub mod time;
pub mod timer;
pub use executor::{
Priority, block_on, run, shutdown, spawn, spawn_checked, spawn_checked_with_priority,
spawn_with_priority,
};
pub use fd::Fd;
pub use nix::sys::epoll::EpollFlags;
pub use signal::AsyncSignal;
pub use task::{Builder as TaskBuilder, yield_now};
pub use timer::Timer;
pub mod futures;
pub mod executor;
pub mod fd;
pub mod task;
mod queue;