zenith-core 0.0.2

Zenith core: KDL parser adapter, semantic AST, canonical formatter, tokens, validation, and diagnostics.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Font sourcing layer: provider trait, data types, and the bundled default.

pub mod embedded;
pub mod local;
mod provider;

pub use local::{LocalFontEntry, scan_font_dirs};
pub use provider::{
    BytesFontProvider, FontData, FontProvider, FontSource, FontStyle, default_provider,
};