diff options
Diffstat (limited to 'components/gfx/text/shaping/mod.rs')
-rw-r--r-- | components/gfx/text/shaping/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/gfx/text/shaping/mod.rs b/components/gfx/text/shaping/mod.rs index 97d96980596..8c59c13427a 100644 --- a/components/gfx/text/shaping/mod.rs +++ b/components/gfx/text/shaping/mod.rs @@ -7,10 +7,10 @@ //! //! Currently, only harfbuzz bindings are implemented. -use font::ShapingOptions; -use text::glyph::GlyphStore; +use crate::font::ShapingOptions; +use crate::text::glyph::GlyphStore; -pub use text::shaping::harfbuzz::Shaper; +pub use crate::text::shaping::harfbuzz::Shaper; pub mod harfbuzz; |