Simple xml is a small crate for reading, parsing and storing xml data
Example parsing:
``` rust
let note = simplexml::fromfile("./examples/note.xml").expect("Failed to parse simple_xml");
let to = ¬e["to"][0]; let from = ¬e["from"][0]; let heading = ¬e.getnodes("heading").expect("Missing heading")[0]; let body = ¬e["body"][0]; let lang = note .getattribute("lang") .expect("Failed to get attribute lang"); ```
More examples can be found in the docs and tests