glyphs_reader/lib.rs
1//! Lightweight library for reading and writing Glyphs font files.
2
3mod corner_components;
4pub mod error;
5mod font;
6pub mod glyphdata;
7mod glyphdata_bundled;
8mod glyphslib_enums;
9mod plist;
10mod propagate_anchors;
11mod smart_components;
12
13pub use font::{
14 Anchor, Axis, AxisRule, Color, ColorStop, Component, CustomParameters, FeatureSnippet, Font,
15 FontMaster, Glyph, InstanceType, Layer, LayerAttributes, Node, NodeType, Path, Shape,
16 ShapeAttributes, glyphs_to_opentype_lang_id,
17};
18pub use plist::Plist;