#![doc(
html_logo_url = "https://commonware.xyz/imgs/rustdoc_logo.svg",
html_favicon_url = "https://commonware.xyz/favicon.ico"
)]
pub mod error;
pub use error::Error;
pub mod databases;
pub mod net;
pub use databases::{any, current, immutable};
pub const fn crate_version() -> &'static str {
env!("CARGO_PKG_VERSION")
}
pub type Hasher = commonware_cryptography::sha256::Sha256;
pub type Digest = commonware_cryptography::sha256::Digest;
pub type Key = commonware_cryptography::sha256::Digest;
pub type Value = commonware_cryptography::sha256::Digest;
pub type Translator = commonware_storage::translator::EightCap;