// This is free and unencumbered software released into the public domain.
//! Bitcache is a distributed content-addressable storage (CAS) system.
//!
//! This is the umbrella crate: it re-exports the core types and traits from
//! [`bitcache_core`], and hosts the `bitcache` command-line interface.
extern crate alloc;
extern crate std;
;
pub use *;