ste 0.1.0-alpha.11

A single-threaded executor with some tricks up its sleeve.
1
2
3
4
5
6
7
8
9
#[cfg(loom)]
pub use loom::sync;
#[cfg(loom)]
pub use loom::thread;

#[cfg(not(loom))]
pub use ::std::sync;
#[cfg(not(loom))]
pub use ::std::thread;