diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-10-01 11:32:48 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-10-01 11:32:48 +0200 |
| commit | 885bfec5d7524845b41e180fadc9cf5626157eec (patch) | |
| tree | f798e03d101d568a110a5c56f4a9bfa2be892928 /main/src | |
| parent | 16f0bd430e0864a3bbd0139803e476be413cb3cb (diff) | |
Make syntax not depend on parse 📩
This would make it possible to split them into two separate crates.
Diffstat (limited to 'main/src')
| -rw-r--r-- | main/src/main.rs | 2 |
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() { |
