rand_sequence/
lib.rs

1#![doc = include_str!("../README.md")]
2#![warn(missing_docs)]
3#![deprecated(since="0.2.0", note="please use the `rand-unique` crate instead")]
4#![no_std]
5#[cfg(test)]
6extern crate std;
7
8#[doc(inline)]
9pub use crate::builder::RandomSequenceBuilder;
10#[doc(inline)]
11pub use crate::sequence::RandomSequence;
12
13mod builder;
14#[cfg(feature = "rand")]
15mod rand;
16mod seed;
17mod sequence;