#xml-parser #xml-document #attributes #parser-writer #xml

aloe-xml

Aloe-XML is a crate for parsing and manipulating XML documents in Rust. It provides a comprehensive set of tools for XML document parsing, attribute management, and document serialization. This crate is a translation of the c++ juce module serving the same function.

2 releases

Uses new Rust 2024

new 0.1.1 Apr 2, 2025
0.1.0 Apr 2, 2025

#3 in #parser-writer

Download history 86/week @ 2025-03-28

86 downloads per month
Used in 173 crates (20 directly)

GPL-3.0 license

1MB
8K SLoC

Aloe-XML

Overview

Aloe-XML is an advanced Rust library for handling XML parsing, manipulation, and serialization. Built with the focus on flexible and efficient XML document processing, this crate facilitates the conversion between XML text and structured XmlElement objects. With capabilities to parse DTDs for external entity loading, Aloe-XML provides a robust XML manipulation interface sans complete DTD validation.

Features

  • Parse XML strings and files into structured XmlElement trees.
  • Robust error reporting and parsing customization options.
  • Flexible API for setting and retrieving XML attributes.
  • Advanced XML iteration and transformation capabilities.
  • Serialize XmlElement structures back into XML format.

Usage

To begin using Aloe-XML, include it in your Cargo.toml:

[dependencies]
aloe-xml = "0.1.0"

Parsing XML

use aloe_xml::{XmlDocument, parse_xml_from_string};

fn main() {
    let text = "<root><child>Hello World</child></root>";
    let xml_element = parse_xml_from_string(&text.to_string());
    match xml_element {
        Some(element) => {
            // Work with the XmlElement
        }
        None => {
            eprintln!("Failed to parse XML.");
        }
    }
}

XML Serialization

To convert an XmlElement back to XML text:

let xml_string = xml_element.to_string();
println!("{}", xml_string);

Contributing

We welcome contributions to Aloe-XML. Please submit issues or pull requests via our GitHub repository.

License

Aloe-XML is licensed under the GPL-3.0 License.


This README.md is generated by an AI model. While attempts have been made to ensure its accuracy, please refer to the library documentation and source code for precise details.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project.

Dependencies

~12–26MB
~355K SLoC