lib3h_persistence_mem 0.0.1-alpha2

lib3h persistence for content addressable storage and entity attribute value indexes. A simple, thread-safe in memory store.
//! 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.
#![feature(try_from)]
#![warn(unused_extern_crates)]

pub mod cas;
pub mod eav;