1 2 3 4 5 6 7 8 9 10
#![cfg_attr(not(debug_assertions), deny(warnings, clippy::all, clippy::cargo))] #![doc = include_str!("../README.md")] pub mod semaphore; #[allow(unused_imports)] pub use semaphore::*; #[cfg(test)] mod tests;