awkrs 0.1.2

Awk implementation in Rust with broad CLI compatibility and parallel record processing when safe
Documentation
[package]
name = "awkrs"
version = "0.1.2"
edition = "2021"
description = "Awk implementation in Rust with broad CLI compatibility and parallel record processing when safe"
license = "MIT"
repository = "https://github.com/MenkeTechnologies/awkrs"
readme = "README.md"
keywords = ["awk", "cli", "text-processing"]
categories = ["command-line-utilities", "parser-implementations"]

[lib]
name = "awkrs"
path = "src/lib.rs"

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

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

[dependencies]
clap = { version = "4.5", features = ["derive", "cargo", "env"] }
num_cpus = "1.16"
rayon = "1.10"
regex = "1.10"
thiserror = "2.0"

[target.'cfg(unix)'.dependencies]
libc = "0.2"