Move std::rand code into cargo-ish format.
4 files changed
tree: a6f324aa22e3d0a4caac3ff30580341d8b93bdbd
  1. src/
  2. .gitignore
  3. Cargo.toml
  4. LICENSE-APACHE
  5. LICENSE-MIT
  6. README.md
README.md

rand

A Rust library for random number generators and other randomness functionality.

Build Status

Documentation

Usage

Add this to your Cargo.toml:

[dependencies]
rand = "0.1.0"

and this to your crate root:

extern crate rand;