summaryrefslogtreecommitdiff
path: root/tests/fuzz/src/compile.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2025-07-09 11:28:26 +0200
committerGitHub <noreply@github.com>2025-07-09 09:28:26 +0000
commite71674f6b3db0768c3e9d6e0271628377f8c82d8 (patch)
tree8ea00050e3441f19c5da952ec0eadb1fecf2d14e /tests/fuzz/src/compile.rs
parente5e1dcd9c01341d2cd3473ac94a70223d5966086 (diff)
Construct library via extension trait instead of default & inherent impl (#6576)
Diffstat (limited to 'tests/fuzz/src/compile.rs')
-rw-r--r--tests/fuzz/src/compile.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fuzz/src/compile.rs b/tests/fuzz/src/compile.rs
index 3dedfb73..945e9fce 100644
--- a/tests/fuzz/src/compile.rs
+++ b/tests/fuzz/src/compile.rs
@@ -7,7 +7,7 @@ use typst::layout::PagedDocument;
use typst::syntax::{FileId, Source};
use typst::text::{Font, FontBook};
use typst::utils::LazyHash;
-use typst::{Library, World};
+use typst::{Library, LibraryExt, World};
struct FuzzWorld {
library: LazyHash<Library>,