xmlite 0.3.0

a light-weight, read-write XML parser.
Documentation
1
2
3
4
5
6
7
8
use std::fs;

#[test]
fn large_file() {
    let file = fs::read_to_string("tests/wayland.xml").unwrap();
    let xml = xmlite::document(&file).unwrap();
    eprintln!("{xml:?}");
}