1 unstable release

0.1.0 Dec 26, 2024

#879 in Parser implementations

Download history 133/week @ 2024-12-26

133 downloads per month

MIT license

53KB
1K SLoC

rs-mrz-parser

Introduction

Automatically determine and parse MRZ string in Rust

Installation

cargo add rs_mrz_parser

Example

use rs_mrz_parser::constants::mrz_utils::MRZ_TYPE1;
use rs_mrz_parser::MRZParser;

fn main() {
    let mrz_string: Vec<String> = vec![
        "I<UTOD231458907<<<<<<<<<<<<<<<".to_string(),
        "7408122F1204159UTO<<<<<<<<<<<6".to_string(),
        "ERIKSSON<<ANNA<MARIA<<<<<<<<<<".to_string(),
    ];

    let mut parser = MRZParser::new_mrz_line_parser(mrz_string);
    let mrz_type = parser.get_mrz_type().unwrap();
    assert_eq!(mrz_type, MRZ_TYPE1);
    let result = parser.parse().unwrap();
    assert_eq!(result.is_valid, true);
}

License

This project is licensed under the MIT License - see the LICENSE file for details

No runtime deps