oox 0.1.0

Open Office XML file format deserializer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![forbid(unsafe_code)]

#[cfg(any(test, feature = "docx"))]
pub mod docx;
pub mod error;
#[cfg(any(test, feature = "pptx"))]
pub mod pptx;
pub mod shared;
pub mod update;
pub mod xml;
pub mod xsdtypes;

extern crate strum;
#[macro_use]
extern crate strum_macros;