#![deny(missing_docs)]
#![deny(warnings)]
pub mod block;
pub mod dag;
pub mod gc;
pub mod path;
pub mod store;
pub use dag_cbor as cbor;
pub use dag_cbor_derive::DagCbor;
pub use libipld_base::*;
pub use libipld_macro::*;
pub type DefaultHash = hash::Blake2b512;
pub const MAX_BLOCK_SIZE: usize = 1_048_576;