Skip to main content

pdf_font/
lib.rs

1//! PDF font handling: CFF/Type1 font parsing, CMap parsing, and PostScript scanning.
2//!
3//! This crate merges functionality from hayro-font, hayro-cmap, and hayro-postscript.
4
5#![cfg_attr(not(feature = "std"), no_std)]
6#![forbid(unsafe_code)]
7#![allow(missing_docs)]
8#![allow(clippy::upper_case_acronyms)]
9
10extern crate alloc;
11
12pub mod cmap;
13pub mod font;
14pub mod postscript;
15
16// Re-export key types at crate root for convenience
17pub use font::*;