1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! CAS Implementations
//!
//! (CAS == Content Addressable Storage)
//!
//! This crate contains implementations for the CAS and EAV traits
//! which are defined but not implemented in the core_types crate.
#![warn(unused_extern_crates)]
#![feature(test)]
#[allow(unused_extern_crates)]
extern crate test;

pub mod cas;
mod common;
pub mod eav;