bitcache/lib.rs
1// This is free and unencumbered software released into the public domain.
2
3//! Bitcache is a distributed content-addressable storage (CAS) system.
4//!
5//! This is the umbrella crate: it re-exports the core types and traits from
6//! [`bitcache_core`], and hosts the `bitcache` command-line interface.
7
8#![no_std]
9#![allow(unused)]
10#![forbid(unsafe_code)]
11#![cfg_attr(docsrs, feature(doc_cfg))]
12
13#[cfg(feature = "alloc")]
14extern crate alloc;
15
16#[cfg(feature = "std")]
17extern crate std;
18
19#[doc = include_str!("../../../README.md")]
20#[cfg(doctest)]
21pub struct ReadmeDoctests;
22
23pub use bitcache_core::*;