#![doc = include_str!(".crate-docs.md")]
#![cfg_attr(not(feature = "included-from-omnibus"), doc = include_str!("../local-feature-flags.md"))]
#![forbid(unsafe_code)]
#![warn(
clippy::cargo,
missing_docs,
clippy::pedantic,
future_incompatible,
rust_2018_idioms,
)]
#![allow(
clippy::missing_errors_doc, clippy::option_if_let_else,
clippy::module_name_repetitions,
)]
#[cfg(feature = "cli")]
pub mod cli;
pub mod config;
mod database;
mod error;
#[cfg(feature = "encryption")]
mod hpke_util;
mod open_trees;
mod storage;
mod tasks;
#[cfg(feature = "encryption")]
pub mod vault;
mod views;
#[cfg(feature = "password-hashing")]
pub use argon2;
#[cfg(not(feature = "included-from-omnibus"))]
pub use bonsaidb_core as core;
pub use self::database::pubsub::Subscriber;
pub use self::database::{Database, DatabaseNonBlocking};
pub use self::error::Error;
pub use self::storage::{BackupLocation, Storage, StorageId, StorageNonBlocking};
#[cfg(feature = "async")]
mod r#async;
#[cfg(feature = "async")]
pub use r#async::*;
#[cfg(test)]
mod tests;