diff --git a/crates/typst/src/lib.rs b/crates/typst/src/lib.rs index 16f7e6051..f6204d9eb 100644 --- a/crates/typst/src/lib.rs +++ b/crates/typst/src/lib.rs @@ -42,13 +42,13 @@ use std::collections::HashSet; use std::sync::LazyLock; use comemo::{Track, Tracked, Validate}; -use ecow::{eco_format, eco_vec, EcoVec}; +use ecow::{EcoVec, eco_format, eco_vec}; +use typst_html::HtmlDocument; use typst_library::diag::{ - bail, warning, ErrAt, FileError, SourceDiagnostic, SourceResult, Warned + ErrAt, FileError, SourceDiagnostic, SourceResult, Warned, bail, warning, }; use typst_library::engine::{Engine, Route, Sink, Traced}; use typst_library::foundations::{NativeRuleMap, StyleChain, Styles, Value}; -use typst_library::html::HtmlDocument; use typst_library::introspection::Introspector; use typst_library::layout::PagedDocument; use typst_library::routines::Routines;