lcg-rand
Lightweight open source random number generator built in Rust, using the Linear Congruential Generator algorithm. A select few ease-of-life functions have been added.
Installing
You can either use the cargo command at the root of your project, or download the source code itself.
cargo add lcg-rand
Running the tests
If you downloaded the source code then integration tests are included.
To run the tests and ensure the software is working on your system run the below command at the project root.
cargo test
Usage
use LCG;
License
This project is licensed under the MIT License - see the LICENSE.md file for details.