Convert XML data to JSON. Note that this is not yet well tested. Use at your own risk.
Add this to your Cargo.toml:
rust
[dependencies]
xmlJSON = "*"
Structs for conversions from XML to JSON ```rust extern crate xmlJSON; extern crate rustc_serialize;
use xmlJSON::XmlDocument; use rustc_serialize::json; use std::str::FromStr;
let s = "
The resulting Json will be of the form
javascript
{
"test": {
"$": {
"lang": "rust"
},
"_" : "An Xml Document",
"testElement": {
"_" : "A test element"
}
}
}
and add this to your crate root:
rust
extern crate xmlJSON;