random-integer 1.0.3

Generate a random integer between two integer numbers (including the two integer numbers).
Documentation
Random Integer
====================

[![Build Status](https://travis-ci.org/magiclen/random-integer.svg?branch=master)](https://travis-ci.org/magiclen/random-integer)
[![Build status](https://ci.appveyor.com/api/projects/status/cdm361f5sxbecdpa/branch/master?svg=true)](https://ci.appveyor.com/project/magiclen/random-integer/branch/master)

Generate a random integer between two integer numbers (including the two integer numbers).

## Example

```rust
extern crate random_integer;

let rnd = random_integer::random_u8(224, 255);

println!("{}", rnd);
```


## Crates.io

https://crates.io/crates/random-integer

## Documentation

https://docs.rs/random-integer

## License

[MIT](LICENSE)