sqawk 0.8.2

An SQL-based command-line tool for processing delimiter-separated files (CSV, TSV, etc.), inspired by awk
Documentation
//! sqawk library
//!
//! This crate provides a library for the sqawk CLI utility.
//! It facilitates SQL querying against in-memory CSV tables.

pub mod aggregate;
pub mod capacity;
pub mod cli;
pub mod config;
pub mod csv_handler;
pub mod database;
pub mod delim_handler;
pub mod error;
pub mod file_handler;
pub mod repl;
pub mod sql_executor;
pub mod storage;
pub mod table;
pub mod vm;