//! Container/format parsers for the DeDRM schemes.
//!
//! Each module parses one container into structured records but performs **no
//! decryption** — that is the job of `flamberge-schemes`, which combines a parsed
//! container with keys from `flamberge-keys` and ciphers from `flamberge-crypto`.
//!
//! Reference: `docs/DEDRM_SCHEMES.md` (per-scheme container sections).
pub use FormatError;
pub type Result<T> = Result;