distributions ============= A Rust library for distributions of random numbers. This builds on top of the random number generators provided by `rand`. [![Build Status](https://travis-ci.org/GrahamDennis/distributions-rs.svg?branch=develop)](https://travis-ci.org/GrahamDennis/distributions-rs) [Documentation](https://doc.rust-lang.org/rand) ## Usage Add this to your `Cargo.toml`: ```toml [dependencies] distributions = "0.3" ``` and this to your crate root: ```rust extern crate distributions; ```