awk-rs 0.1.0

A 100% POSIX-compatible AWK implementation in Rust
Documentation
[[bench]]
harness = false
name = "benchmarks"
path = "benches/benchmarks.rs"

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

[dependencies.regex]
version = "1"

[dependencies.thiserror]
version = "1"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.tempfile]
version = "3"

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "text-processing"]
description = "A 100% POSIX-compatible AWK implementation in Rust"
edition = "2024"
keywords = ["awk", "text-processing", "cli", "posix"]
license = "MIT OR Apache-2.0"
name = "awk-rs"
readme = "README.md"
repository = "https://github.com/pegasusheavy/awk-rs"
version = "0.1.0"

[profile.bench]
codegen-units = 1
lto = true

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"

[[test]]
name = "cli"
path = "tests/cli.rs"

[[test]]
name = "e2e"
path = "tests/e2e.rs"

[[test]]
name = "gawk_compat"
path = "tests/gawk_compat.rs"