dejadb-core 1.0.0

Core .mg format, canonical serialization, content addressing, and grain types for DejaDB.
Documentation
1
2
3
4
5
6
7
8
9
10
//! dejadb-core — OMS grain types, the .mg binary format, canonical
//! serialization, and content addressing. Licensed under MIT OR Apache-2.0.

pub mod error;
pub mod format;
pub mod types;

pub use error::{Hash, DejaDbError, Result};
pub use format::*;
pub use types::*;