summaryrefslogtreecommitdiff
path: root/src/export/pdf
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-10-18 00:02:38 +0200
committerLaurenz <laurmaedje@gmail.com>2022-10-18 00:04:12 +0200
commitc0e972b91a7bf8d22cd24a38fc92a9c6214c8a0c (patch)
tree19362eb993f15ef1b9bceeac821852bb6edfe955 /src/export/pdf
parente21822665591dc19766275da1e185215a6b945ef (diff)
Reduce dependencies from compiler on library
Diffstat (limited to 'src/export/pdf')
-rw-r--r--src/export/pdf/mod.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/export/pdf/mod.rs b/src/export/pdf/mod.rs
index a87f5c6b..2f6f255d 100644
--- a/src/export/pdf/mod.rs
+++ b/src/export/pdf/mod.rs
@@ -15,10 +15,9 @@ use pdf_writer::{Finish, Name, PdfWriter, Ref, TextStr};
use self::outline::{Heading, HeadingNode};
use self::page::Page;
use crate::font::Font;
-use crate::frame::Frame;
+use crate::frame::{Frame, Lang};
use crate::geom::{Dir, Em, Length};
use crate::image::Image;
-use crate::library::text::Lang;
/// Export a collection of frames into a PDF file.
///