summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-10-01 11:32:48 +0200
committerLaurenz <laurmaedje@gmail.com>2020-10-01 11:32:48 +0200
commit885bfec5d7524845b41e180fadc9cf5626157eec (patch)
treef798e03d101d568a110a5c56f4a9bfa2be892928 /main
parent16f0bd430e0864a3bbd0139803e476be413cb3cb (diff)
Make syntax not depend on parse 📩
This would make it possible to split them into two separate crates.
Diffstat (limited to 'main')
-rw-r--r--main/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/main.rs b/main/src/main.rs
index 5b3538d5..2a09c77c 100644
--- a/main/src/main.rs
+++ b/main/src/main.rs
@@ -9,7 +9,7 @@ use futures_executor::block_on;
use typstc::export::pdf;
use typstc::font::FontLoader;
-use typstc::syntax::LineMap;
+use typstc::parse::LineMap;
use typstc::{Feedback, Pass, Typesetter};
fn main() {