noosphere-core 0.18.1

Core data types of the Rust Noosphere implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Sphere content is a storage space for any files that the sphere owner wishes to associate
//! with a public "slug", that is addressable by them or others who have replicated the sphere
//! data.

mod decoder;
mod file;
mod read;
mod write;

pub use decoder::*;
pub use file::*;
pub use read::*;
pub use write::*;