ab_archiving/
lib.rs

1//! Collection of modules used for dealing with archived state of Subspace Network.
2#![feature(array_chunks, generic_arg_infer, iter_array_chunks, iter_collect_into)]
3#![expect(incomplete_features, reason = "generic_const_exprs")]
4// TODO: This feature is not actually used in this crate, but is added as a workaround for
5//  https://github.com/rust-lang/rust/issues/139376
6#![feature(generic_const_exprs)]
7#![no_std]
8
9pub mod archiver;
10pub mod objects;
11pub mod piece_reconstructor;
12pub mod reconstructor;
13
14extern crate alloc;