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.
In your Cargo.toml
:
toml
[dependencies]
card-validate = "0.2"
```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); ```