A small library for parsing an XML file into an in-memory tree structure.
Not recommended for large XML files, as it will load the entire file into memory.
https://crates.io/crates/xmltree
Add the following to your Cargo.toml
file:
[dependencies]
xmltree = "0.8"
and this to yoru crate root:
extern crate xmltree;
See the documentation for the latest version: