Provides a convenient API to read from XML using XPath queries.
This crate is mostly a wrapper around the crate sxd_xpath.
```rust use xpath_reader::{Context, XpathReader, XpathStrReader};
let xml = r#"
let mut context = Context::new(); context.set_namespace("b", "books");
let reader = XpathStrReader::new(xml, &context).unwrap();
let name: String = reader.read("//@name").unwrap(); asserteq!(name, "Neuromancer".tostring());
let publisher: Option
let tags: Vec