Sha256: b14b9333a7a21bd125a4ae82f01e5ea9c9ed2f78d7d1ad49a13d9b176f1fe8ab
Contents?: true
Size: 317 Bytes
Versions: 39
Compression:
Stored size: 317 Bytes
Contents
//! This module abstracts over `loom` and `std::sync` depending on whether we //! are running tests or not. #![allow(unused)] #[cfg(not(all(test, loom)))] mod std; #[cfg(not(all(test, loom)))] pub(crate) use self::std::*; #[cfg(all(test, loom))] mod mocked; #[cfg(all(test, loom))] pub(crate) use self::mocked::*;
Version data entries
39 entries across 39 versions & 1 rubygems