1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#![feature(allocator_api)] #![feature(negative_impls)] #![feature(never_type)] #![deny(warnings)] #![no_std] extern crate alloc; mod lazy_box; mod poison; pub use poison::{LockResult, TryLockError, TryLockResult}; pub mod mutex;