gramps_xml 0.1.0

Rust library to work with Gramps XML files.
Documentation
1
2
3
4
5
fn main() {
    let s = include_str!("../example.gramps");
    let db = gramps_xml::from_str(s).unwrap();
    dbg!(db);
}