ccgen_rs 0.1.0

A fast, flexible, and customizable credit card number generator library for Rust. Generates valid (Luhn-compliant) credit card numbers for testing, QA, and development.
Documentation
1
2
3
4
5
6
7
pub struct GeneratorOptions<'a> {
    pub bin_pattern: &'a str,
    pub month: Option<usize>,
    pub year: Option<usize>,
    pub cvv: Option<usize>,
    pub amount: Option<usize>,
}