summaryrefslogtreecommitdiff
path: root/crates/typst-utils/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/typst-utils/src/lib.rs')
-rw-r--r--crates/typst-utils/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/typst-utils/src/lib.rs b/crates/typst-utils/src/lib.rs
index 8488b72d..e199e1bb 100644
--- a/crates/typst-utils/src/lib.rs
+++ b/crates/typst-utils/src/lib.rs
@@ -20,6 +20,9 @@ pub use self::pico::PicoStr;
pub use self::round::{round_int_with_precision, round_with_precision};
pub use self::scalar::Scalar;
+#[doc(hidden)]
+pub use once_cell;
+
use std::fmt::{Debug, Formatter};
use std::hash::Hash;
use std::iter::{Chain, Flatten, Rev};
@@ -29,9 +32,6 @@ use std::sync::Arc;
use siphasher::sip128::{Hasher128, SipHasher13};
-#[doc(hidden)]
-pub use once_cell;
-
/// Turn a closure into a struct implementing [`Debug`].
pub fn debug<F>(f: F) -> impl Debug
where