diff options
Diffstat (limited to 'src/model/library.rs')
| -rw-r--r-- | src/model/library.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/model/library.rs b/src/model/library.rs index c87ca095..8ef22f10 100644 --- a/src/model/library.rs +++ b/src/model/library.rs @@ -2,13 +2,14 @@ use std::fmt::{self, Debug, Formatter}; use std::hash::{Hash, Hasher}; use std::num::NonZeroUsize; +use ecow::EcoString; use once_cell::sync::OnceCell; use super::{Content, Module, NodeId, StyleChain, StyleMap, Vt}; use crate::diag::SourceResult; use crate::doc::Document; use crate::geom::{Abs, Dir}; -use crate::util::{hash128, EcoString}; +use crate::util::hash128; /// Definition of Typst's standard library. #[derive(Debug, Clone, Hash)] |
