aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 2e38d4e5b41715073a2ce7093927e570b8295b92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod declaration;
pub mod element;
mod error;
pub mod reader;
mod writer;
pub mod xml;

pub type Result<T> = std::result::Result<T, error::Error>;

pub const XML_NS: &str = "http://www.w3.org/XML/1998/namespace";
pub const XMLNS_NS: &str = "http://www.w3.org/2000/xmlns/";

pub use element::Element;
pub use error::Error;
pub use reader::Reader;
pub use writer::Writer;