VRD

A Rust library for generating random and pseudo-random numbers based on the Mersenne Twister algorithm

Made With Love Crates.io Lib.rs Docs.rs License

divider

Welcome to VRD 👋

VRD Banner

Website â€ĸ Documentation â€ĸ Report Bug â€ĸ Request Feature â€ĸ Contributing Guidelines

Overview 📖

The Random (VRD) library is an implementation of a pseudorandom number generator using the Mersenne Twister algorithm.

The library generates random integers uniformly distributed in the range of 0 to (2^32 - 1) and supports generating random booleans, characters, floats, integers, and vectors of random bytes.

Features ✨

Installation đŸ“Ļ

It takes just a few minutes to get up and running with vrd.

Requirements

vrd requires Rust 1.67.0 or later.

Documentation

ℹī¸ Info: Please check out our website for more information and find our documentation on docs.rs, lib.rs and crates.io.

Usage 📖

To use vrd in your project, add the following to your Cargo.toml file:

toml [dependencies] vrd = "0.0.1"

Add the following to your main.rs file:

rust extern crate vrd; use vrd::*;

then you can use the functions in your application code.

Examples

VRD comes with a set of examples that you can use to get started. The examples are located in the examples directory of the project. To run the examples, clone the repository and run the following command in your terminal from the project root directory.

shell cargo run --example vrd

Semantic Versioning Policy đŸšĨ

For transparency into our release cycle and in striving to maintain backward compatibility, VRD follows semantic versioning.

License 📝

The project is licensed under the terms of both the MIT license and the Apache License (Version 2.0).

Contribution 🤝

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

divider

Acknowledgements 💙

A big thank you to all the awesome contributors of Mini Functions for their help and support.