query-forge 0.9.0

Run SQL queries and dataset diffs on XLSX/XML/CSV/JSON/JSONL/Markdown/HTML/Feather/Parquet inputs and export results as text, CSV, JSONL, Markdown, XML, HTML, XLSX, Feather, or Parquet
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod commands;
mod formats;
mod help;

pub(crate) use commands::{
    Cli, Commands, ConvCommand, DiffCommand, DiffOutputFormat, DiffShow, InspectCommand,
    PivotCommand, QueryCommand, SchemaCommand, TablesCommand,
};
pub(crate) use formats::{
    HeaderCase, InspectionFormat, JsonMode, MetadataFormat, OutputFormat, PivotAggregation, XmlMode,
};

#[cfg(test)]
mod tests;