dont use any for a single feature check

This commit is contained in:
Paul Robertson 2024-06-30 10:40:54 -04:00
parent 8d5305c769
commit 19d8f0b27e
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -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;