[go: up one dir, main page]

randomize 2.0.0

A dead simple to use randomization library for rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[![License:Apache2](https://img.shields.io/badge/License-Apache2-green.svg)](https://www.apache.org/licenses/LICENSE-2.0)
[![CratesIO](https://img.shields.io/crates/v/randomize.svg)](https://crates.io/crates/randomize)
[![AppVeyor](https://ci.appveyor.com/api/projects/status/9olegwj1smh484ph?svg=true)](https://ci.appveyor.com/project/Lokathor/randomize-rs)
[![TravisCI](https://travis-ci.org/Lokathor/randomize-rs.svg?branch=master)](https://travis-ci.org/Lokathor/randomize-rs)

# randomize-rs


A dead simple to use randomization library for rust. Mostly PCGs and such.

This library is core only _by default_.

If you want to use `std` features (specifically a macro to declare global
generators, and a utility for using the system clock as a crude seed source)
then you must enable the `std` feature when you depend on this crate.

You can also enable a feature if you want to have serde derives thrown on to the
various generators.