diff options
| author | Laurenz <laurmaedje@gmail.com> | 2025-07-09 11:28:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-09 09:28:26 +0000 |
| commit | e71674f6b3db0768c3e9d6e0271628377f8c82d8 (patch) | |
| tree | 8ea00050e3441f19c5da952ec0eadb1fecf2d14e /crates/typst-ide/src/tests.rs | |
| parent | e5e1dcd9c01341d2cd3473ac94a70223d5966086 (diff) | |
Construct library via extension trait instead of default & inherent impl (#6576)
Diffstat (limited to 'crates/typst-ide/src/tests.rs')
| -rw-r--r-- | crates/typst-ide/src/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-ide/src/tests.rs b/crates/typst-ide/src/tests.rs index b3f368f2..168dfc9f 100644 --- a/crates/typst-ide/src/tests.rs +++ b/crates/typst-ide/src/tests.rs @@ -10,7 +10,7 @@ use typst::syntax::package::{PackageSpec, PackageVersion}; use typst::syntax::{FileId, Source, VirtualPath}; use typst::text::{Font, FontBook, TextElem, TextSize}; use typst::utils::{singleton, LazyHash}; -use typst::{Feature, Library, World}; +use typst::{Feature, Library, LibraryExt, World}; use crate::IdeWorld; |
