# Miller Rabin Primality Test for rug (GMP) ## Introduction This crate implements a multi-threaded, arbitrary precision implementation of the Miller-Rabin primality test. The implementation ist done for Integer from the crate [rug](https://crates.io/crates/rug), a high-level interface for GMP. The crate is strongly inspired from the crate [miller_rabin](https://crates.io/crates/miller_rabin). ## Installation See [rug](https://crates.io/crates/rug) for the requirements and installation steps. ## Licence Rug is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. See the full text of the [GNU LGPL](lgpl-3.0.md) for details.