diff options
Diffstat (limited to 'main')
| -rw-r--r-- | main/src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/main/src/main.rs b/main/src/main.rs index 832849b8..9bf693e4 100644 --- a/main/src/main.rs +++ b/main/src/main.rs @@ -5,7 +5,6 @@ use std::path::{Path, PathBuf}; use std::rc::Rc; use fontdock::fs::{FsIndex, FsSource}; -use futures_executor::block_on; use typstc::diag::{Feedback, Pass}; use typstc::eval::State; @@ -48,7 +47,7 @@ fn main() { let Pass { output: layouts, feedback: Feedback { mut diags, .. }, - } = block_on(typeset(&src, state, Rc::clone(&loader))); + } = typeset(&src, state, Rc::clone(&loader)); if !diags.is_empty() { diags.sort(); |
