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.
Debit cards:
Credit cards:
In your Cargo.toml
:
toml
[dependencies]
card-validate = "2.1"
```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) } ```