# lucas-lehmer Implementation of the [Lucas–Lehmer primality test](https://en.wikipedia.org/wiki/Lucas%E2%80%93Lehmer_primality_test) in Rust. ## Usage Add this to your `Cargo.toml`: ```toml [dependencies] lucas_lehmer = "0.1.0" ``` and this to your crate root: ```rust extern crate lucas_lehmer; ``` ## Compatability The 'lucas_lehmer' crate requires a nightly build of Rust. ## License Licensed under the terms and conditions of the [MIT license](http://opensource.org/licenses/MIT) license.