ddex-parser 0.4.1

High-performance DDEX XML parser with SIMD optimization (40+ MB/s)
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Simple test to debug error contract
fn main() {
    use ddex_parser::DDEXParser;
    use std::io::Cursor;

    let parser = DDEXParser::new();
    let invalid_xml = "not xml";
    let result = parser.parse(Cursor::new(invalid_xml.as_bytes()));

    println!("Result: {:?}", result);
}