1#![doc(
9 html_logo_url = "https://commonware.xyz/imgs/rustdoc_logo.svg",
10 html_favicon_url = "https://commonware.xyz/favicon.ico"
11)]
12
13pub mod error;
14pub use error::Error;
15pub mod databases;
16pub mod net;
17pub use databases::{any, immutable};
18
19pub fn crate_version() -> &'static str {
21 env!("CARGO_PKG_VERSION")
22}
23
24pub type Hasher = commonware_cryptography::sha256::Sha256;
26
27pub type Digest = commonware_cryptography::sha256::Digest;
29
30pub type Key = commonware_cryptography::sha256::Digest;
32
33pub type Value = commonware_cryptography::sha256::Digest;
35
36pub type Translator = commonware_storage::translator::EightCap;