Skip to main content

libxml_rs/xml/parser/
mod.rs

1//! XML parser — native Rust (§19, §20, §85 Phase 3).
2//!
3//! Implements the XML parser state machine, push parser, SAX/SAX2 integration,
4//! declarations, namespaces, entities, DTD construction, recovery modes,
5//! parser options, and custom input.
6//!
7//! Phase 0: scaffolded. Implementation begins in Phase 3.
8
9pub(crate) mod helpers;
10pub(crate) mod input;
11pub(crate) mod state;
12
13#[cfg(test)]
14pub(crate) mod debug_test;
15#[cfg(test)]
16pub(crate) mod tests;
17pub(crate) mod tokenizer;