#![deny(elided_lifetimes_in_paths)]
#![deny(unused_must_use)]
#![allow(clippy::collapsible_if, reason = "too many false positives")]
#![allow(clippy::collapsible_else_if, reason = "too many false positives")]
#![allow(clippy::module_inception, reason = "too many false positives")]
#![allow(clippy::too_many_arguments, reason = "too many false positives")]
#![allow(clippy::type_complexity, reason = "too many false positives")]
pub use self::{
common::{
Address, Addresses, BoxPromise, BoxStream, Error, IID, Promise, QueryOptions, Result, TransactionOptions,
TransactionType, box_stream, error, info,
},
connection::{
Credentials, DriverOptions, DriverTlsConfig,
server::{
AvailableServer, Replica, ReplicationRole, Server, server_routing::ServerRouting,
server_version::ServerVersion,
},
},
database::{Database, DatabaseManager},
driver::TypeDBDriver,
transaction::Transaction,
user::{User, UserManager},
};
pub mod analyze;
pub mod answer;
mod common;
pub mod concept;
mod connection;
mod database;
pub mod driver;
pub mod given;
pub mod transaction;
mod user;