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 /src/main.rs | |
| 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 'src/main.rs')
| -rw-r--r-- | src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index ae655253..8b56512d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,10 +5,9 @@ use anyhow::{anyhow, bail, Context}; use fontdock::fs::FsIndex; use typst::diag::Pass; -use typst::env::{Env, ResourceLoader}; +use typst::env::{Env, FsIndexExt, ResourceLoader}; use typst::exec::State; use typst::export::pdf; -use typst::font::FsIndexExt; use typst::library; use typst::parse::LineMap; use typst::typeset; |
