1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![allow(clippy::module_inception)] mod pq_rc; #[cfg(not(test))] mod pq_rc_cell; #[cfg(test)] pub mod pq_rc_cell; #[cfg(test)] mod tests; pub use pq_rc::*;