Expose rustybuzz in the public API

This exposes `rustybuzz` on top of `fontdb`. This is in particular
useful if you want to query the font for additional information. This is
already publically exposed via `Font::rustybuzz()`, but the types were
not re-exported, so it was impossible to properly use that function.
This commit is contained in:
Christopher Serr 2023-03-27 23:08:32 +02:00
parent 6c355bf08b
commit 8a14734033

View file

@ -10,8 +10,9 @@ pub use self::std::*;
#[cfg(feature = "std")]
mod std;
// re-export fontdb
// re-export fontdb and rustybuzz
pub use fontdb;
pub use rustybuzz;
/// A value borrowed together with an [`FontSystem`]
pub struct BorrowedWithFontSystem<'a, T> {