From 19d8f0b27e05d7bc88d70468f6e36b463b6ad8d8 Mon Sep 17 00:00:00 2001 From: Paul Robertson Date: Sun, 30 Jun 2024 10:40:54 -0400 Subject: [PATCH] dont use any for a single feature check --- src/database/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/database/mod.rs b/src/database/mod.rs index 68b9b47a..48366e25 100644 --- a/src/database/mod.rs +++ b/src/database/mod.rs @@ -6,7 +6,7 @@ mod kvtree; #[cfg(feature = "rocksdb")] pub(crate) mod rocksdb; -#[cfg(any(feature = "rocksdb"))] +#[cfg(feature = "rocksdb")] pub(crate) mod watchers; extern crate conduit_core as conduit;