Registry / serialization / rustyxml

rustyxml

JSON →
library0.3.0rscratesunverified

A SAX-like streaming XML parser with a DOM-like interface built on top.

# Cargo.toml [dependencies] RustyXML = "0.3.0"
INSTALL
IMPORT
SIG · RUSTYXML
R
rustyxml
serializationrustv0.3.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Event
use rustyxml::Event;

Parses XML using SAX-like streaming events.

use rustyxml::Event; fn main() { let xml = "<root><item/></root>"; for event in rustyxml::parse_events(xml.as_bytes()) { match event { Event::ElementStart(name) => println!("Start: {}", name), _ => {} } } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.3.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
8
Resources
rustyxml — cargo add rustyxml · libregistry