#![cfg_attr(coverage_nightly, feature(coverage_attribute))]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(hidden)]
#![expect(
clippy::exhaustive_enums,
clippy::exhaustive_structs,
reason = "this crate's `pub` items form an in-workspace handoff boundary to the \
cargo-bench-history shell crate, used only inside this workspace rather \
than as a stable public API. Exhaustive construction and matching by \
those in-workspace consumers is intended"
)]
mod command;
pub use command::{
AnalyzeOptions, BackfillOptions, BlessOptions, CacheSelection, CollectOptions, Command,
ExamineOptions, InstallOptions, ListOptions, ListSubject, LocalStorageSelection, PruneOptions,
UnblessOptions,
};