diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-02-23 12:15:38 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-02-23 12:20:47 +0100 |
| commit | a1d47695a2af5afa466c21ad812a1a8212780293 (patch) | |
| tree | a3210a23abbecaf69479f1da8772e4e3f7cce32d /src/doc.rs | |
| parent | 6e65ebf23641a755b0088569751c0b02e898f1e9 (diff) | |
Switch to ecow
Diffstat (limited to 'src/doc.rs')
| -rw-r--r-- | src/doc.rs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5,6 +5,8 @@ use std::num::NonZeroUsize; use std::str::FromStr; use std::sync::Arc; +use ecow::EcoString; + use crate::font::Font; use crate::geom::{ self, rounded_rect, Abs, Align, Axes, Color, Corners, Dir, Em, Geometry, Numeric, @@ -14,7 +16,6 @@ use crate::image::Image; use crate::model::{ capable, dict, node, Content, Dict, Fold, StableId, StyleChain, Value, }; -use crate::util::EcoString; /// A finished document with metadata and page frames. #[derive(Debug, Default, Clone, Hash)] |
