camt053 0.4.2

CAMT.053 (ISO 20022) bank statement parser and MT940 converter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use camt053::Document;

fn main() {
    let camt_file = std::env::args()
        .nth(1)
        .expect("Please provide a CAMT.053 file as an argument");

    let camt = Document::load(&camt_file).expect("Failed to load CAMT.053 file");

    // Dump the parsed CAMT.053 document to the console for inspection
    dbg!(camt);
}