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