summaryrefslogtreecommitdiff
path: root/crates/typst-library/src/lib.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-11-08 23:42:34 +0100
committerLaurenz <laurmaedje@gmail.com>2023-11-08 23:42:45 +0100
commit7f0fcda3764e261612021e5ec66d536bb5ee98ef (patch)
tree496449a9a3111b2108a068087c56281b4d47e519 /crates/typst-library/src/lib.rs
parentd7fea7077ebe4df44edff32b2b3a6e4a00775974 (diff)
Move some things out of `util`
Diffstat (limited to 'crates/typst-library/src/lib.rs')
-rw-r--r--crates/typst-library/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/typst-library/src/lib.rs b/crates/typst-library/src/lib.rs
index da31409a..554e7bcb 100644
--- a/crates/typst-library/src/lib.rs
+++ b/crates/typst-library/src/lib.rs
@@ -14,8 +14,8 @@ pub mod symbols;
pub mod text;
pub mod visualize;
-use typst::eval::{Array, LangItems, Library, Module, Scope};
-use typst::geom::{Align, Color, Dir, Smart};
+use typst::eval::{Array, LangItems, Library, Module, Scope, Smart};
+use typst::geom::{Align, Color, Dir};
use typst::model::{NativeElement, Styles};
use self::layout::LayoutRoot;