subspace_archiving/
lib.rs

1
2
3
4
5
6
7
//! Collection of modules used for dealing with archived state of Subspace Network.
#![cfg_attr(not(feature = "std"), no_std)]
#![feature(array_chunks, extract_if, iter_collect_into)]

pub mod archiver;
pub mod piece_reconstructor;
pub mod reconstructor;