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")]