Credit Card

Credit Card is a library for adding credit cards to any project.

Criterion

add credit_card as a dependency to Cargo.toml

toml credit_card = "0.1.3"

```rust,norun use credit_card::CreditCard;

let mut cc = CreditCard { number: "4111111111111111".tostring(), cardholdername: "Graydon Hoare".tostring(), expirationmonth: "01".tostring(), expirationyear: "2023".tostring(), brand: None, securitycode: None }; cc.apply_brand(); ```

Current Features

Future Features

Notice:

This is under development right now, so interfaces and apis will be changing. If you are interested in using this please create an issue or reach out with your feature request so I can help add it.