rand
====
A Rust library for random number generators and other randomness functionality.
[](https://travis-ci.org/rust-lang-nursery/rand)
[](https://ci.appveyor.com/project/alexcrichton/rand)
[Documentation](https://doc.rust-lang.org/rand)
Add this to your `Cargo.toml`:
```toml
[dependencies]
rand = "0.3"
```
and this to your crate root:
```rust
extern crate rand;
```