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:
parent
6c355bf08b
commit
8a14734033
1 changed files with 2 additions and 1 deletions
|
|
@ -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> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue