ooxml 0.1.1

An Office OpenXML parser writen in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![feature(str_split_once)]

/// Error module
pub mod error;

/// The OpenXML Packaging Convetion implementations.
pub mod packaging;

/// Shared components
mod drawing;
mod math;

pub mod document;