streamid 0.2.0

Ceramic StreamID
Documentation
#![doc = include_str!("../README.md")]

mod commit_id;
mod result;
mod stream_id;
mod stream_ref;
mod stream_type;
mod util;

pub use cid::Cid;
pub use libipld::Ipld;

pub use commit_id::*;
pub use result::*;
pub use stream_id::*;
pub use stream_ref::*;
pub use stream_type::*;

pub const STREAMID_CODEC: u8 = 206;