carta-core 0.0.3

Shared conversion options, error types, and text/attribute helpers.
Documentation
1
2
3
4
5
6
7
8
9
//! Packaging primitives shared by container-based document formats.
//!
//! A container format — an e-book or office-document package — is a ZIP archive of XML parts. This
//! module supplies the two pieces such a writer builds on: a deterministic [`zip`] archive builder
//! (and matching reader) and a small [`xml`] emitter that always produces well-formed output. Both
//! are byte-reproducible: identical inputs yield identical bytes.

pub mod xml;
pub mod zip;