pptx 0.1.0

A Rust library for creating and manipulating PowerPoint (.pptx) files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub(crate) mod constants;
pub mod content_type;
pub mod custom_xml;
pub mod pack_uri;
pub mod package;
pub mod part;
pub mod relationship;

pub use content_type::ContentTypeMap;
pub use custom_xml::CustomXmlPart;
pub use pack_uri::PackURI;
pub use package::OpcPackage;
pub use part::{part_type_from_content_type, Part, PartType};
pub use relationship::{Relationship, Relationships};