Skip to main content

polyfont_core/
lib.rs

1pub mod engine;
2pub mod error;
3pub mod font;
4pub mod token;
5
6pub use engine::{PolyfontEngine, ScopeMatchEngine};
7pub use error::PolyfontError;
8pub use font::{AxisValue, FontAssignment, FontRule, FontSpec, FontStyle, FontWeight, NamedAxis};
9pub use token::{Position, Range, TokenCollection, TokenInfo};