[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"
default-run = "sqawk"
keywords = ["csv", "tsv", "sql", "delimited", "awk"]
categories = ["command-line-utilities", "text-processing", "parser-implementations"]
rust-version = "1.88"
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"