ab_client_archiving/lib.rs
1//! Consensus archiver responsible for archival of blockchain history
2
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/141492
6#![feature(generic_const_exprs)]
7
8pub mod recreate;
9pub mod task;