prolly-map 0.4.0

Content-addressed versioned map storage primitives.
Documentation
mod gc;
mod kind;
mod manifest;
mod sync;
mod walk;

pub use gc::{
    plan_content_gc, sweep_content_gc, sweep_content_gc_with_invalidator, ContentGcPlan,
    ContentGcSweep,
};
pub use kind::{ContentObjectKind, TypedContentObject, TypedContentRoot};
pub use manifest::{
    compare_and_swap_named_content_root, compare_and_swap_named_content_root_with_limits,
    load_named_content_root, load_named_content_root_with_limits, put_named_content_root,
    put_named_content_root_with_limits, ContentManifestUpdate, ContentRootManifest,
    ContentRootPublication,
};
pub use sync::{copy_and_publish_content_graph, copy_content_graph, ContentGraphCopy};
pub use walk::{content_references, walk_content_graph, ContentGraphLimits, ContentGraphWalk};