diff options
| author | Laurenz <laurmaedje@gmail.com> | 2019-12-05 19:48:37 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2019-12-05 19:48:37 +0100 |
| commit | 72a9631b038d1a60e4e4a78e92cd69e6f8ce4316 (patch) | |
| tree | 17614efc2e21dd0b8caa24beaaaee7c40c150281 /tests/layouting.rs | |
| parent | f72b1505bebf8d2fe1a60d386a3a3c3b67d4f903 (diff) | |
Move arg parser into `FuncArgs` and create (incomplete) consistent map ðŸ§
Diffstat (limited to 'tests/layouting.rs')
| -rw-r--r-- | tests/layouting.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/layouting.rs b/tests/layouting.rs index 72d160e4..845c0034 100644 --- a/tests/layouting.rs +++ b/tests/layouting.rs @@ -3,10 +3,10 @@ use std::io::{BufWriter, Read, Write}; use std::process::Command; use typst::export::pdf::PdfExporter; -use typst::layout::LayoutAction; -use typst::toddle::query::FileSystemFontProvider; +use typst::layout::{LayoutAction, Serialize}; use typst::size::{Size, Size2D, SizeBox}; use typst::style::PageStyle; +use typst::toddle::query::FileSystemFontProvider; use typst::Typesetter; const CACHE_DIR: &str = "tests/cache"; |
