dais_document/lib.rs
1//! Document source abstraction and PDF rendering for Dais.
2//!
3//! Defines the [`source::DocumentSource`] trait used by the Hayro-backed PDF renderer and related render pipeline components.
4
5pub mod cache;
6pub mod page;
7pub mod render_pipeline;
8pub mod source;
9pub mod typst_renderer;
10
11#[cfg(feature = "hayro")]
12pub mod pdf_hayro;
13
14#[cfg(feature = "hayro")]
15pub mod typst_export;