Skip to main content

ab_archiving/
lib.rs

1//! Collection of modules used for dealing with archival history.
2
3#![no_std]
4
5pub mod archiver;
6pub mod objects;
7pub mod piece_reconstructor;
8pub mod reconstructor;
9
10extern crate alloc;