1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Library holding necessary code for the Ribosome  that is also useful for hdk-rust,
//! or more generally for making rust code that the Ribosome can run.
//! Must not have any dependency with any other Holochain crates.
extern crate serde;
extern crate serde_json;
#[macro_use]
extern crate serde_derive;
pub extern crate holochain_core_types;

pub mod api_serialization;
pub mod macros;
pub mod memory_allocation;
pub mod memory_serialization;