1// SPDX-License-Identifier: Apache-2.0 2//! Heddle's content-addressed object model and stable codecs. 3 4pub mod compact; 5pub mod error; 6pub mod object; 7 8pub use error::{HeddleError, RecoveryDetails};