draviavemal_xml_rs/lib.rs
1/*
2 * This file is part of the xml_rs project.
3 * License: AGPL-3.0 (see ./LICENSE for details).
4 * - Free for non-commercial/open source use under AGPL-3.0.
5 * - Commercial use requires a separate license.
6 */
7
8mod dom;
9pub(crate) mod macros;
10mod parser;
11pub(crate) mod utils;
12
13pub use dom::*;
14pub use parser::*;