//! Binary parser for BIOPAC AcqKnowledge (.acq) files.
//!
//! # Module layout
//!
//! - `headers` — raw `binrw` structs mirroring the on-disk layout
//! - `interleaved` — streaming reader for uncompressed channel data
//! - `markers` — marker and journal section parser
//! - `compressed` — per-channel zlib decompression
//! - `reader` — high-level `read_file` / `read_stream` API (requires `read` feature)
// Per-channel zlib decompression (T07) — requires `read` (= `std` + flate2)
// High-level I/O API — only available with the `read` (= `std`) feature.