nom-xml 0.3.0

A Rust Crate for parsing XML.
Documentation
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE catalog [
    <!ELEMENT catalog (book+)>
    <!ELEMENT book (authored_by, title, genre, series_number, description)>
    <!ATTLIST book isbn CDATA #REQUIRED>
    <!ELEMENT authored_by (pen_name, authors)>
    <!ELEMENT pen_name (#PCDATA)>
    <!ELEMENT authors (author+)>
    <!ELEMENT author (first_name, last_name)>
    <!ELEMENT title (#PCDATA)>
    <!ELEMENT genre (#PCDATA)>
    <!ELEMENT series_number (#PCDATA)>
    <!ELEMENT description (#PCDATA)>
]>
<catalog>
    <book isbn="978-0316129084">
        <authored_by>
            <pen_name>James S.A. Corey</pen_name>
            <authors>
                <author><first_name>Daniel</first_name><last_name>Abraham</last_name></author>
                <author><first_name>Ty</first_name><last_name>Franck</last_name></author>
            </authors>
        </authored_by>
        <title>Leviathan Wakes</title>
        <genre>Science Fiction</genre>
        <type>Novel</type>
        <series_number>1</series_number>
        <description>The first book in the Expanse series</description>
    </book>
    <book>
        <title>Caliban's War</title>
        <genre>Science Fiction</genre>
        <type>Novel</type>
        <series_number>2</series_number>
        <description>The second book in the Expanse series</description>
    </book>
    <book isbn="978-0316129077">
        <authored_by>
            <pen_name>James S.A. Corey</pen_name>
        </authored_by>
        <title>Abaddon's Gate</title>
        <genre>Science Fiction</genre>
        <type>Novel</type>
        <series_number>3</series_number>
        <description>The third book in the Expanse series</description>
    </book>
    <book>
        <authored_by>
            <authors>
                <author><first_name>Daniel</first_name><last_name>Abraham</last_name></author>
                <author><first_name>Ty</first_name><last_name>Franck</last_name></author>
            </authors>
        </authored_by>
        <title>Cibola Burn</title>
        <type>Novel</type>
        <series_number>4</series_number>
        <description>The fourth book in the Expanse series</description>
    </book>
    <book isbn="978-0316334716">
        <authored_by>
            <pen_name>James S.A. Corey</pen_name>
            <authors>
                <author><first_name>Daniel</first_name><last_name>Abraham</last_name></author>
                <author><first_name>Ty</first_name><last_name>Franck</last_name></author>
            </authors>
        </authored_by>
        <title>Nemesis Games</title>
        <genre>Science Fiction</genre>
        <type>Novel</type>
    </book>
    <book isbn="978-0316334747">
        <authored_by>
            <pen_name>James S.A. Corey</pen_name>
            <authors>
            </authors>
        </authored_by>
        <title>Babylon's Ashes</title>
        <genre>Science Fiction</genre>
        <type>Novel</type>
        <series_number>6</series_number>
        <description>The sixth book in the Expanse series</description>
    </book>
    <book>
    </book>
    <book isbn="978-0316332873">
        <authored_by>
            <pen_name>James S.A. Corey</pen_name>
            <authors>
                <author><first_name>Daniel</first_name><last_name>Abraham</last_name></author>
                <author><first_name>Ty</first_name><last_name>Franck</last_name></author>
            </authors>
        </authored_by>
        <title>Tiamat's Wrath</title>
        <genre>Science Fiction</genre>
        <type>Novel</type>
        <series_number>8</series_number>
        <description>The eighth book in the Expanse series</description>
    </book>
    <book isbn="978-0316332910">
        <authored_by>
            <pen_name>James S.A. Corey</pen_name>
            <authors>
                <author><first_name>Daniel</first_name><last_name>Abraham</last_name></author>
                <author><first_name>Ty</first_name><last_name>Franck</last_name></author>
            </authors>
        </authored_by>
        <title>Leviathan Falls</title>
        <genre>Science Fiction</genre>
        <type>Novel</type>
        <series_number>9</series_number>
        <description>The ninth book in the Expanse series</description>
    </book>
</catalog>