#![cfg_attr(windows,deny(unsafe_code))]#![cfg_attr(not(windows),forbid(unsafe_code))]/// Implementation of cryptography, for CSPRNGs.
pubmodcrypto;/// Sources for obtaining entropy.
#[cfg(feature ="std")]pubmodentropy;/// Traits for generating types from an RNG.
pubmodgen;/// RNG algorithms.
pubmodrand;pubusegen::*;pubuserand::*;