1//! Parser of PostScript fonts. 2 3#[macro_use(dereference, jump_take, jump_take_given, raise, table)] 4extern crate typeface; 5 6pub mod compact1; 7pub mod type1; 8pub mod type2; 9 10pub use typeface::{tape, value, walue, Error, Result};