From 5b60664eeb689c20b5b2c1980153188cf8188d64 Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Sat, 29 Apr 2023 09:09:39 +0200 Subject: [PATCH] Exclude time utilities when not needed --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 422131a..8007649 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,6 +6,8 @@ pub mod client; pub mod primitives; + +#[cfg(feature = "crypto-wrapper")] mod time_utils; #[cfg(feature = "crypto-wrapper")]