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