LUHNY.RS

GitHub CI

My Rustacean implementation of the Luhn algorithm for IMEI numbers.

ABOUT

This is my Rustacean implementation of a package I wrote in ECMA Script a couple of months ago. (Link in the section below.) Both these packages do one thing: They provide functions for you to check whether the IMEI number of your smartphone is valid or not. The algorithm used here is the "Luhn" algorithm. Other implementations and web apps showcasing my implementations can be found in the section below. Enjoy.

LINKS

INSTALLATION

IN A RUST PROJECT

To use Luhny.rs in your Rust project, add this line to your project's dependencies in the project's Cargo.toml:

TOML luhny = "0.3.0"

AS A COMMAND LINE TOOL

Make sure you have Rust and Git installed to run the following command from a terminal session:

bash cargo install luhny

This command will put the luhny executable on your path and install everything properly.

Alternatively, you can download a compiled binary for 64-bit systems from this repository's Releases section.

USAGE

API

To understand how to use Luhny.rs in your project, please refer to the project's documentation.

COMMAND LINE

```bash luhny -v

OR

luhny --version

OR

luhny version ```

```bash luhny -h

OR

luhny --help

OR

luhny help ```

```bash luhny -i 353879234252633

OR

luhny --inn 353879234252633

OR

luhny inn 353879234252633 ```

CHANGELOG

Version 0.1.0

Version 0.2.0

Version 0.3.0

NOTE