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-pdf/src | |
| parent | d7fea7077ebe4df44edff32b2b3a6e4a00775974 (diff) | |
Move some things out of `util`
Diffstat (limited to 'crates/typst-pdf/src')
| -rw-r--r-- | crates/typst-pdf/src/outline.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/typst-pdf/src/outline.rs b/crates/typst-pdf/src/outline.rs index d17f8948..4fd072b6 100644 --- a/crates/typst-pdf/src/outline.rs +++ b/crates/typst-pdf/src/outline.rs @@ -1,8 +1,8 @@ use std::num::NonZeroUsize; use pdf_writer::{Finish, Ref, TextStr}; -use typst::eval::item; -use typst::geom::{Abs, Smart}; +use typst::eval::{item, Smart}; +use typst::geom::Abs; use typst::model::Content; use crate::{AbsExt, PdfContext}; |
