xml_to_json_rs - XML to JSON rust library
Rust library to convert an XML string to serde_json::Value
Check the tests in src/libs.rs to see further usage examples.
Usage:
let simple_xml = "<a><b>simple</b></a>";
assert_eq!;
let nested_with_xml_with_attributes =
"<a><b href=\"#self\">simple</b><b><c class=\"my_class\"><d>D</d><d>1</d></c></b></a>";
assert_eq!;