dais-document 0.1.0

Document source abstraction and PDF rendering for Dais
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Document source abstraction and PDF rendering for Dais.
//!
//! Defines the [`source::DocumentSource`] trait that abstracts over PDF rendering backends.
//! In v1, the implementation is hayro-backed (or mupdf-rs as fallback).
//! A future native Typst source implementation would be another `DocumentSource`.

pub mod cache;
pub mod page;
pub mod render_pipeline;
pub mod source;
pub mod typst_renderer;

#[cfg(feature = "hayro")]
pub mod pdf_hayro;

#[cfg(feature = "mupdf")]
pub mod pdf_mupdf;