summaryrefslogtreecommitdiff
path: root/library/src/lib.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-03-01 16:30:58 +0100
committerLaurenz <laurmaedje@gmail.com>2023-03-01 16:33:28 +0100
commit6ab7760822ccd24b4ef126d4737d41f1be15fe19 (patch)
tree49905f91d292ceefe4f9878ead43f117c4b1fec0 /library/src/lib.rs
parentab841188e3d2687ee8f436336e6fde337985a83e (diff)
Split up `model` module
Diffstat (limited to 'library/src/lib.rs')
-rw-r--r--library/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/library/src/lib.rs b/library/src/lib.rs
index 31da5b71..0759f73f 100644
--- a/library/src/lib.rs
+++ b/library/src/lib.rs
@@ -10,8 +10,9 @@ pub mod symbols;
pub mod text;
pub mod visualize;
+use typst::eval::{LangItems, Library, Module, Scope};
use typst::geom::{Align, Color, Dir, GenAlign};
-use typst::model::{LangItems, Library, Module, Node, NodeId, Scope, StyleMap};
+use typst::model::{Node, NodeId, StyleMap};
use self::layout::LayoutRoot;