rsxml2json 0.1.1

A Rust library for converting XML to JSON format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0"?>

<rdf:RDF
        xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
        xmlns:cd="http://www.recshop.fake/cd#">

    <rdf:Description
            rdf:about="http://www.recshop.fake/cd/The Money Store">
        <cd:artist>Death Grips</cd:artist>
        <cd:country>USA</cd:country>
        <cd:company>Third Worlds</cd:company>
        <cd:price>00.00</cd:price>
        <cd:year>2012</cd:year>
    </rdf:Description>

</rdf:RDF>