lib.rs raw

//! # Beeping
//!
//! An encrypted backup tool built to be suspended and resumed at any
//! time — by request, by SIGKILL, or by power loss — even when the
//! filesystem changes between suspension and resumption.
//!
//! The building blocks live in workspace crates: `persistent-queue`
//! provides crash-tolerant work queues, and `repository` provides the
//! encrypted, deduplicating storage format. This crate assembles them
//! into pipelines (see [`pipeline`]) and will grow the application shell
//! around them.

pub mod excise;
pub mod patterns;
pub mod pipeline;
pub mod prune;
pub mod sweep;