From be7cfc85d08c545abfac08098b7b33b4bd71f37e Mon Sep 17 00:00:00 2001 From: Laurenz Date: Sun, 27 Oct 2024 19:04:55 +0100 Subject: Split out four new crates (#5302) --- crates/typst-utils/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crates/typst-utils/src') 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) -> impl Debug where -- cgit v1.2.3