#![cfg_attr(feature = "docs", doc = "\n\nSee the [changelog][changelog] for a full release history.")]
#![cfg_attr(feature = "docs", doc = "## Feature flags")]
#![cfg_attr(feature = "docs", doc = document_features::document_features!())]
#![cfg_attr(all(coverage_nightly, test), feature(coverage_attribute))]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![deny(unsafe_code)]
#![deny(unreachable_pub)]
mod boxes;
pub mod codec;
pub use boxes::{BoxType, DynBox, header, types};
#[cfg(test)]
mod tests;
#[cfg(feature = "docs")]
#[scuffle_changelog::changelog]
pub mod changelog {}