xml_builder/lib.rs
1#![crate_type = "lib"]
2#![forbid(unsafe_code)]
3#![forbid(missing_docs)]
4#![doc = include_str!("../README.md")]
5
6mod builder;
7mod utils;
8mod xml;
9mod xmlcontent;
10mod xmlelement;
11mod xmlerror;
12mod xmlversion;
13
14pub use builder::XMLBuilder;
15pub use xml::XML;
16pub use xmlelement::XMLElement;
17pub use xmlerror::{Result, XMLError};
18pub use xmlversion::XMLVersion;
19
20use utils::escape_str;
21use xmlcontent::XMLElementContent;