query-forge 0.7.0

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

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

#[cfg(test)]
mod tests;