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