1#![warn(clippy::all)]
8#![cfg_attr(not(feature = "std"), no_std)]
10#![cfg_attr(feature = "safe", forbid(unsafe_code))]
11#![cfg_attr(feature = "nightly", feature(doc_cfg))]
12#[cfg(feature = "alloc")]
13extern crate alloc;
14
15#[cfg(all(feature = "std", feature = "no_std"))]
17compile_error!("You can't enable the `std` and `no_std` features at the same time.");
18#[cfg(all(feature = "safe", feature = "unsafe"))]
19compile_error!("You can't enable the `safe` and `unsafe` features at the same time.");
20devela::deprecate_feature![old: "all", new: "full", since: "0.0.2"];
22
23pub mod misc;
24pub mod xorshift;
25
26pub mod all {
28 #[doc(inline)]
29 pub use super::{misc::*, xorshift::*};
30}