rs-card-validate

Build Status

Documentation

Crate

Detects and validates credit card numbers (type of card, number length and Luhn checksum).

Important notice: this is a fork of @rprotasov initial work, to make it usable in Rust projects.

Install library

In your Cargo.toml:

toml [dependencies] card-validate = "0.2"

Validate a number

```rust extern crate card_validate;

use card_validate::Validate;

let cardnumber = "343380440754432"; let result = Validate::from(cardnumber).expect("invalid card number");

asserteq!(result.cardtype.name(), "amex".tostring()); asserteq!(result.valid, true); asserteq!(result.lengthvalid, true); asserteq!(result.luhnvalid, true); ```