From 1977d0799c7e7ec850114d04056664fc54402a17 Mon Sep 17 00:00:00 2001 From: Evgeny Fomin Date: Fri, 27 Dec 2024 17:21:03 +0100 Subject: [PATCH] fix compilation issue --- grovedb/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/grovedb/src/lib.rs b/grovedb/src/lib.rs index b7741acf..8bf36401 100644 --- a/grovedb/src/lib.rs +++ b/grovedb/src/lib.rs @@ -149,7 +149,7 @@ pub mod reference_path; pub mod replication; #[cfg(all(test, feature = "full"))] mod tests; -#[cfg(feature = "full")] +#[cfg(any(feature = "full", feature = "verify"))] mod util; #[cfg(feature = "full")] mod visualize; @@ -208,6 +208,7 @@ pub use query::{PathQuery, SizedQuery}; use reference_path::path_from_reference_path_type; #[cfg(feature = "grovedbg")] use tokio::net::ToSocketAddrs; +#[cfg(any(feature = "full", feature = "verify"))] use util::TxRef; #[cfg(feature = "full")]