diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-11-08 23:42:34 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-11-08 23:42:45 +0100 |
| commit | 7f0fcda3764e261612021e5ec66d536bb5ee98ef (patch) | |
| tree | 496449a9a3111b2108a068087c56281b4d47e519 /crates/typst-docs | |
| parent | d7fea7077ebe4df44edff32b2b3a6e4a00775974 (diff) | |
Move some things out of `util`
Diffstat (limited to 'crates/typst-docs')
| -rw-r--r-- | crates/typst-docs/src/lib.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/crates/typst-docs/src/lib.rs b/crates/typst-docs/src/lib.rs index 921695c7..d58734c6 100644 --- a/crates/typst-docs/src/lib.rs +++ b/crates/typst-docs/src/lib.rs @@ -21,9 +21,11 @@ use serde::Deserialize; use serde_yaml as yaml; use typst::diag::{bail, StrResult}; use typst::doc::Frame; -use typst::eval::{CastInfo, Func, Library, Module, ParamInfo, Repr, Scope, Type, Value}; +use typst::eval::{ + CastInfo, Func, Library, Module, ParamInfo, Repr, Scope, Smart, Type, Value, +}; use typst::font::{Font, FontBook}; -use typst::geom::{Abs, Smart}; +use typst::geom::Abs; use typst_library::layout::{Margin, PageElem}; static DOCS_DIR: Dir<'_> = include_dir!("$CARGO_MANIFEST_DIR/../../docs"); |
