iridium-db 0.4.0

A high-performance vector-graph hybrid storage and indexing engine
mod local;
mod support;
mod types;

#[cfg(feature = "rhodium-backend")]
mod rhodium;

mod injected;

pub use injected::InjectedBlobStoreAdapter;
pub use local::LocalBlobStore;
#[cfg(feature = "rhodium-backend")]
pub use rhodium::RhodiumBlobStore;
#[cfg(not(feature = "rhodium-backend"))]
pub use support::RhodiumBlobStore;
pub use types::{
    BlobAckMode, BlobBackend, BlobDurabilityTarget, BlobGetResult, BlobPrefixDeleteResult,
    BlobPutOptions, BlobPutResult, BlobReadOptions, BlobReadTierPolicy, BlobStore,
};