[package]
edition = "2024"
name = "grab-cli"
version = "0.2.0"
authors = ["anwitars <anwitarsbusiness@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, declarative stream processor for delimited text data."
readme = "README.md"
keywords = [
"csv",
"json",
"cli",
"stream",
"parser",
]
categories = [
"command-line-utilities",
"parsing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/anwitars/grab"
[[bin]]
name = "grab"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4.5.60"
features = ["derive"]
[dependencies.csv]
version = "1.4.0"
[dependencies.regex]
version = "1.12.3"
[dependencies.serde_json]
version = "1.0.149"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.assert_cmd]
version = "2.1.2"
[dev-dependencies.insta]
version = "1.46.3"
[dev-dependencies.proptest]
version = "1.10.0"
[dev-dependencies.serde_json]
version = "1.0.149"