remove unused database backends

This commit is contained in:
Charles Hall 2024-04-29 21:45:29 -07:00
parent aa51acf152
commit c765a1634d
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
9 changed files with 2 additions and 646 deletions

View file

@ -3,27 +3,13 @@ use crate::Result;
use std::{future::Future, pin::Pin, sync::Arc};
#[cfg(feature = "sled")]
pub mod sled;
#[cfg(feature = "sqlite")]
pub mod sqlite;
#[cfg(feature = "heed")]
pub mod heed;
#[cfg(feature = "rocksdb")]
pub mod rocksdb;
#[cfg(feature = "persy")]
pub mod persy;
#[cfg(any(
feature = "sqlite",
feature = "rocksdb",
feature = "heed",
feature = "persy"
))]
#[cfg(any(feature = "sqlite", feature = "rocksdb",))]
pub mod watchers;
pub trait KeyValueDatabaseEngine: Send + Sync {