Registry / utility / xmlparser

xmlparser

JSON →
library0.13.6rscratesunverified

Pull-based, zero-allocation XML parser.

# Cargo.toml [dependencies] xmlparser = "0.13.6"
INSTALL
IMPORT
SIG · XMLPARSER
X
xmlparser
utilityrustv0.13.6
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.

Tokenizer
use xmlparser::Tokenizer;

Parse XML using a pull-based tokenizer.

use xmlparser::Tokenizer; fn main() { let xml = "<root><child/></root>"; let mut tokenizer = Tokenizer::from(xml); for token in tokenizer { println!("{:?}", token.unwrap()); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.13.6latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

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