1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! Xiangyun is the crate for random with Rust  

// TODO: remove clippy before publish 
// #![cfg_attr(feature="clippy", feature(plugin))]
// #![cfg_attr(feature="clippy", plugin(clippy))]

pub mod rand;
pub mod num;
pub mod chaos;

pub use rand::{Solver, Style, JumpStyle};
pub use rand::base::{system, RAND_MAX};
pub use num::Rand;
pub use chaos::Chaos;