1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#![no_std] use proc_macro_hack::proc_macro_hack; /// # Random constants /// Allows you to insert random constants into your code that will be auto-generated at compile time. /// A new value will be generated every time the relevent file is re-built. /// # Example /// ``` /// use const_random::const_random ; /// const MY_RANDOM_NUMBER: u32 = const_random!(u32); /// ``` /// /// The following types are supported u8, u16, u32, u64, and u128 /// #[proc_macro_hack] pub use const_random_macro::const_random;