zbox 0.9.2

ZboxFS is a zero-details, privacy-focused in-app file system.
Documentation
#![allow(clippy::module_inception)]
//! content module document
//!

mod chunk;
mod chunker;
mod content;
mod entry;
mod merkle_tree;
mod segment;
mod span;
mod store;

pub use self::chunk::ChunkMap;
pub use self::content::{Content, ContentRef, Reader as ContentReader};
pub use self::store::{Store, StoreRef, StoreWeakRef, Writer};