From 77911624554d650add3d51182d0949e8f885c1f5 Mon Sep 17 00:00:00 2001 From: Laurenz Stampfl Date: Sun, 20 Jul 2025 14:49:34 +0200 Subject: [PATCH] Group imports --- crates/typst-library/src/visualize/image/pdf.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/crates/typst-library/src/visualize/image/pdf.rs b/crates/typst-library/src/visualize/image/pdf.rs index ce657b2c9..970096b03 100644 --- a/crates/typst-library/src/visualize/image/pdf.rs +++ b/crates/typst-library/src/visualize/image/pdf.rs @@ -1,9 +1,11 @@ -use crate::foundations::Bytes; -use hayro_syntax::page::Page; -use hayro_syntax::{LoadPdfError, Pdf}; use std::hash::{Hash, Hasher}; use std::sync::Arc; +use hayro_syntax::page::Page; +use hayro_syntax::{LoadPdfError, Pdf}; + +use crate::foundations::Bytes; + struct DocumentRepr { pdf: Arc, data: Bytes,