1 2 3 4 5 6 7
//! `report` subcommand: summarise a Parquet data file or a YAML header file as a //! text report (TSV, plain text, or JSON) written to a file or stdout. pub mod format; pub mod parquet; pub mod summary; pub mod yaml;