diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-03-19 17:57:31 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-03-19 17:57:31 +0100 |
| commit | 264a7dedd42e27cd9e604037640cf0594b2ec46b (patch) | |
| tree | d26feea399d54bb86bd44878f40293983bf5251d /bench | |
| parent | ca3df70e2a5069832d7d2135967674c34a155442 (diff) | |
Scheduled maintenance 🔨
- New naming scheme
- TextNode instead of NodeText
- CallExpr instead of ExprCall
- ...
- Less glob imports
- Removes Value::Args variant
- Removes prelude
- Renames Layouted to Fragment
- Moves font into env
- Moves shaping into layout
- Moves frame into separate module
Diffstat (limited to 'bench')
| -rw-r--r-- | bench/src/bench.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bench/src/bench.rs b/bench/src/bench.rs index cf752769..afb827b8 100644 --- a/bench/src/bench.rs +++ b/bench/src/bench.rs @@ -1,11 +1,10 @@ use criterion::{criterion_group, criterion_main, Criterion}; use fontdock::fs::FsIndex; -use typst::env::{Env, ResourceLoader}; +use typst::env::{Env, FsIndexExt, ResourceLoader}; use typst::eval::eval; use typst::exec::{exec, State}; use typst::export::pdf; -use typst::font::FsIndexExt; use typst::layout::layout; use typst::library; use typst::parse::parse; |
