ddex-parser 0.4.5

High-performance DDEX XML parser with SIMD optimization (40+ MB/s)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! DDEX Parser CLI entry point

mod cli;
mod error;
mod parser;
mod streaming;
mod transform;
mod utf8_utils;

// Re-export for CLI use
pub use ddex_parser::DDEXParser;

fn main() {
    if let Err(e) = cli::main() {
        eprintln!("Error: {:#}", e);
        std::process::exit(1);
    }
}