Skip to main content

xdoc/
lib.rs

1//! Declarative XML engine.
2//!
3//! The crate is intentionally organized as one package with internal modules.
4//! Domain-specific profiles live outside this engine.
5
6extern crate self as xdoc;
7
8pub mod builder;
9pub mod component;
10pub mod core;
11pub mod macros;
12pub mod parser;
13pub mod query;
14pub mod schema;
15pub mod security;
16pub mod signature;
17pub mod testing;
18pub mod transform;
19pub mod writer;