xdoc-rs 0.1.1

Declarative XML engine for Rust
Documentation
//! Declarative XML engine.
//!
//! The crate is intentionally organized as one package with internal modules.
//! Domain-specific profiles live outside this engine.

extern crate self as xdoc;

pub mod builder;
pub mod component;
pub mod core;
pub mod macros;
pub mod parser;
pub mod query;
pub mod schema;
pub mod security;
pub mod signature;
pub mod testing;
pub mod transform;
pub mod writer;