export Fallback, PlatformFallback

This commit is contained in:
tigregalis 2025-03-03 16:28:53 +08:00 committed by Jeremy Soller
parent a67dded054
commit b32c831f1b

View file

@ -1,5 +1,4 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
pub(crate) mod fallback;
// re-export ttf_parser
pub use ttf_parser;
@ -13,6 +12,9 @@ use alloc::vec::Vec;
use rustybuzz::Face as RustybuzzFace;
use self_cell::self_cell;
pub(crate) mod fallback;
pub use fallback::{Fallback, PlatformFallback};
pub use self::system::*;
mod system;