[package]
edition = "2021"
name = "awkrs"
version = "0.1.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Awk implementation in Rust with broad CLI compatibility and parallel record processing when safe"
readme = "README.md"
keywords = [
"awk",
"cli",
"text-processing",
]
categories = [
"command-line-utilities",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/MenkeTechnologies/awkrs"
[lib]
name = "awkrs"
path = "src/lib.rs"
[[bin]]
name = "aw"
path = "src/bin/ars.rs"
[[bin]]
name = "awkrs"
path = "src/main.rs"
[[test]]
name = "batch_integration"
path = "tests/batch_integration.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "extra_integration"
path = "tests/extra_integration.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "more_integration"
path = "tests/more_integration.rs"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"cargo",
"env",
]
[dependencies.memchr]
version = "2.7"
[dependencies.rayon]
version = "1.10"
[dependencies.regex]
version = "1.10"
[dependencies.rustc-hash]
version = "2.1"
[dependencies.thiserror]
version = "2.0"
[target."cfg(unix)".dependencies.libc]
version = "0.2"