3 releases (breaking)
0.3.0 | Aug 6, 2023 |
---|---|
0.2.0 | Aug 5, 2023 |
0.1.0 | Aug 4, 2023 |
#9 in #luhn
25 downloads per month
13KB
199 lines
LUHNY.RS
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
- Library implementation in ECMA Script: VIEW
- Web app implementation in Vue.js: VIEW
- Web app implementation in Yew.rs: VIEW
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
:
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:
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
- Get version info:
luhny -v
# OR
luhny --version
# OR
luhny version
- Get helpful info:
luhny -h
# OR
luhny --help
# OR
luhny help
- Test the validity of an IMEI number:
luhny -i 353879234252633
# OR
luhny --inn 353879234252633
# OR
luhny inn 353879234252633
CHANGELOG
Version 0.1.0
- Initial release.
- Upload to GitHub.
Version 0.2.0
- Updated documentation.
- Updated the version of the CLI tool.
- Automatic generation of binaries for 64-bit desktop platforms.
Version 0.3.0
- Updated documentation.
- Updated the help message of the CLI tool.
NOTE
- Luhny.rs by Alexander Abraham a.k.a. "Angel Dollface"
- Licensed under the MIT license.
Dependencies
~360KB