| 1 | pub mod cbdt; |
| 2 | pub mod cblc; |
| 3 | mod cff; |
| 4 | pub mod cmap; |
| 5 | pub mod colr; |
| 6 | pub mod cpal; |
| 7 | pub mod glyf; |
| 8 | pub mod head; |
| 9 | pub mod hhea; |
| 10 | pub mod hmtx; |
| 11 | pub mod kern; |
| 12 | pub mod loca; |
| 13 | pub mod maxp; |
| 14 | pub mod name; |
| 15 | pub mod os2; |
| 16 | pub mod post; |
| 17 | pub mod sbix; |
| 18 | pub mod stat; |
| 19 | pub mod svg; |
| 20 | pub mod vhea; |
| 21 | pub mod vorg; |
| 22 | |
| 23 | #[cfg (feature = "opentype-layout" )] |
| 24 | pub mod gdef; |
| 25 | #[cfg (feature = "opentype-layout" )] |
| 26 | pub mod gpos; |
| 27 | #[cfg (feature = "opentype-layout" )] |
| 28 | pub mod gsub; |
| 29 | #[cfg (feature = "opentype-layout" )] |
| 30 | pub mod math; |
| 31 | |
| 32 | #[cfg (feature = "apple-layout" )] |
| 33 | pub mod ankr; |
| 34 | #[cfg (feature = "apple-layout" )] |
| 35 | pub mod feat; |
| 36 | #[cfg (feature = "apple-layout" )] |
| 37 | pub mod kerx; |
| 38 | #[cfg (feature = "apple-layout" )] |
| 39 | pub mod morx; |
| 40 | #[cfg (feature = "apple-layout" )] |
| 41 | pub mod trak; |
| 42 | |
| 43 | #[cfg (feature = "variable-fonts" )] |
| 44 | pub mod avar; |
| 45 | #[cfg (feature = "variable-fonts" )] |
| 46 | pub mod fvar; |
| 47 | #[cfg (feature = "variable-fonts" )] |
| 48 | pub mod gvar; |
| 49 | #[cfg (feature = "variable-fonts" )] |
| 50 | pub mod hvar; |
| 51 | #[cfg (feature = "variable-fonts" )] |
| 52 | pub mod mvar; |
| 53 | #[cfg (feature = "variable-fonts" )] |
| 54 | pub mod vvar; |
| 55 | |
| 56 | pub use cff::cff1; |
| 57 | #[cfg (feature = "variable-fonts" )] |
| 58 | pub use cff::cff2; |
| 59 | pub use cff::CFFError; |
| 60 | |