1
2
3
4
5
6
7
8
9
10
//! Parser for PostScript fonts.

#[macro_use(dereference, raise, table)]
extern crate typeface;

pub mod compact1;
pub mod type1;
pub mod type2;

pub use typeface::{Error, Result, Tape, Value, Walue};