rs-card-validate

Build Status Dependency Status

Documentation

Crate

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

Important notice: this is a complete rework of @rprotasov initial work, supporting more card providers and containing important validation fixes.

Supported providers

Debit cards:

Credit cards:

Install library

In your Cargo.toml:

toml [dependencies] card-validate = "2.1"

Validate a number

```rust extern crate card_validate;

use card_validate::Validate;

let card_number = "5236313877109142";

match Validate::from(cardnumber) { Ok(result) => println!("Card type is: {}", result.cardtype.name()), Err(err) => println!("Card is invalid: {:?}", err) } ```