19 stable releases

2.4.0 Mar 30, 2024
2.3.0 Apr 3, 2023
2.2.3 Jan 8, 2023
2.2.2 Feb 19, 2019
0.2.2 Aug 27, 2017

#32 in Value formatting

Download history 2126/week @ 2023-12-23 2340/week @ 2023-12-30 3640/week @ 2024-01-06 4486/week @ 2024-01-13 4735/week @ 2024-01-20 4699/week @ 2024-01-27 3960/week @ 2024-02-03 5022/week @ 2024-02-10 3644/week @ 2024-02-17 3005/week @ 2024-02-24 4229/week @ 2024-03-02 3286/week @ 2024-03-09 3036/week @ 2024-03-16 3058/week @ 2024-03-23 3717/week @ 2024-03-30 2770/week @ 2024-04-06

13,160 downloads per month
Used in 10 crates (7 directly)

MIT license

11KB
202 lines

rs-card-validate

Test and Build Build and Release Buy Me A Coffee

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.

🇫🇷 Crafted in Brest, France.

Supported providers

Debit cards:

  • Visa Electron
  • Maestro
  • Forbrugsforeningen
  • Dankort

Credit cards:

  • Visa
  • MasterCard
  • American Express
  • MIR
  • Diners Club
  • Discover
  • UnionPay
  • JCB

Install library

In your Cargo.toml:

[dependencies]
card-validate = "2.3"

Validate a number

extern crate card_validate;

use card_validate::Validate;

let card_number = "5236313877109142";

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

Dependencies

~2–3MB
~53K SLoC