colonylib 0.6.0

A library implementing the Colony metadata framework on Autonomi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod data;
pub mod graph;
pub mod key;
pub mod pod;

pub use data::DataStore;
pub use graph::Graph;
pub use key::KeyStore;
pub use pod::PodManager;

// Re-exports of the bls types
pub use autonomi::{PublicKey, SecretKey, Signature};

extern crate alloc;
extern crate tracing;