Random constants

This crate provides compile time random number generation. This allows you to insert random constants into your code that will be auto-generated at compile time.

A new value will be generated every time the file is rebuilt. This obviously makes the resulting binary or lib non-deterministic.

Example

```

![feature(procmacrohygiene)]

use constrandom::constrandom ; const MYRANDOMNUMBER: u32 = constrandom!(u32); `` Note that the#![feature(procmacro_hygiene)]` must be enabled on your crate for the macro to work.

The following types are supported u8, u16, u32, u64, and u128