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
29
30
31
32
33
34
35
36
//! Holochain Core Types
//!
//! The reason for having this crate is to have a minimal but
//! complete set of types that are used in most other Holochain
//! crates, but that don't include Holochain itself.
//!
//! Note: This is already quite big. Maybe break the CAS and EAV traits
//! out into their separate crate as well since those are generic and not
//! necessarily bound to Holochain.

extern crate futures;
extern crate multihash;
extern crate rust_base58;
extern crate serde;
extern crate serde_json;
extern crate snowflake;
#[macro_use]
extern crate bitflags;

#[macro_use]
extern crate serde_derive;
pub mod cas;
pub mod chain_header;
pub mod crud_status;
pub mod eav;
pub mod entry;
pub mod entry_type;
pub mod error;
pub mod file_validation;
pub mod hash;
pub mod json;
pub mod keys;
pub mod links_entry;
pub mod signature;
pub mod time;
pub mod validation;