Skip to main content

docx_rs/
lib.rs

1mod documents;
2#[allow(hidden_glob_reexports)] // should rename?
3mod errors;
4mod escape;
5mod macros;
6mod reader;
7mod types;
8pub mod xml;
9mod xml_builder;
10mod xml_json;
11mod zipper;
12
13pub use documents::*;
14pub use errors::*;
15pub use reader::*;
16pub use types::*;
17pub use xml_json::*;