sqawk 0.8.2

An SQL-based command-line tool for processing delimiter-separated files (CSV, TSV, etc.), inspired by awk
Documentation
[package]
name = "sqawk"
version = "0.8.2"
edition = "2021"
authors = ["Jeff Garzik <jgarzik@pobox.com>"]
description = "An SQL-based command-line tool for processing delimiter-separated files (CSV, TSV, etc.), inspired by awk"
license = "MIT"
repository = "https://github.com/jgarzik/sqawk"
homepage = "https://github.com/jgarzik/sqawk"
documentation = "https://docs.rs/sqawk"
readme = "README.md"
# `cargo run` and `cargo install --path .` would otherwise be ambiguous across
# the two [[bin]] targets below.
default-run = "sqawk"
keywords = ["csv", "tsv", "sql", "delimited", "awk"]
categories = ["command-line-utilities", "text-processing", "parser-implementations"]
# Minimum supported Rust version.
#
# Verified by building with that toolchain, not inferred. The binding
# constraints are transitive: `home` (via rustyline) and `psm` (via
# sqlparser -> recursive -> stacker) both require 1.88.
rust-version = "1.88"
# `doc/` is deliberately NOT excluded: README.md links into it, and shipping it
# keeps those links resolvable in a vendored or offline copy of the crate.
exclude = [
    "tests/",
    ".github/",
    "CLAUDE.md",
    "generated-icon.png",
    ".replit",
    ".sqawk_history",
]

[dependencies]
clap = { version = "4", features = ["derive"] }
sqlparser = "0.62"
csv = "1"
anyhow = "1"
regex = "1"
memmap2 = "0.9"
libc = "0.2"
tempfile = "3"

rustyline = "15"

[dev-dependencies]
assert_cmd = "2"
predicates = "3"

[profile.release]
lto = true

[profile.profiling]
inherits = "release"
debug = true

[[bin]]
name = "sqawk"
path = "src/main.rs"

[[bin]]
name = "tsq"
path = "src/tsq.rs"