Skip to content

Commit

Permalink
fix compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fominok committed Dec 27, 2024
1 parent 1078307 commit 1977d07
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion grovedb/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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")]
Expand Down

0 comments on commit 1977d07

Please sign in to comment.