unreal/
lib.rs

1//! # unreal
2//!
3//! Fake data generator. Fork of the [fakeit](https://github.com/PumpkinSeed/fakeit) crate.
4
5#![warn(
6    clippy::nursery,
7    clippy::pedantic,
8    clippy::unwrap_used,
9    clippy::allow_attributes_without_reason,
10    missing_docs
11)]
12
13mod data;
14/// Use a global instance of the Unreal struct to generate fake data.
15pub mod global;
16mod impls;
17mod macros;
18mod unreal;
19pub(crate) use macros::{array_consts, choose};
20pub use unreal::Unreal;