Skip to main content

dejadb_core/
lib.rs

1//! dejadb-core — OMS grain types, the .mg binary format, canonical
2//! serialization, and content addressing. Licensed under MIT OR Apache-2.0.
3
4pub mod error;
5pub mod format;
6pub mod types;
7
8pub use error::{Hash, DejaDbError, Result};
9pub use format::*;
10pub use types::*;