Convert XML data to JSON. Note that this is not yet well tested. Use at your own risk.
Add this to your Cargo.toml:
[dependencies]
xmlJSON = "0.2.0"
Structs for conversions from XML to JSON
extern crate xmlJSON;
extern crate rustc_serialize;
use xmlJSON::XmlDocument;
use rustc_serialize::json;
use std::str::FromStr;
let s = "<test lang=\"rust\">An XML Document <testElement>A test
element</testElement></test>"
let document : XmlDocument = XmlDocument::from_str(s).unwrap();
let jsn : json::Json = document.to_json();
The resulting Json will be of the form
{
"test": {
"$": {
"lang": "rust"
},
"_" : "An Xml Document",
"testElement": {
"_" : "A test element"
}
}
}
and add this to your crate root:
extern crate xmlJSON;
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
- Add better testing
- Add documentation
- Add conversion from JSON to XML, and allowing for writing JSON as XML