1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//! 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.

extern crate futures;
extern crate holochain_core_types;
#[macro_use]
extern crate lazy_static;
extern crate riker;
extern crate riker_default;
extern crate riker_patterns;
#[macro_use]
extern crate unwrap_to;
extern crate snowflake;
extern crate walkdir;

#[macro_use]
extern crate serde;
#[macro_use]
extern crate serde_json;

pub mod actor;
pub mod cas;
pub mod eav;
pub mod path;