[package]
edition = "2024"
rust-version = "1.92"
name = "rawk-cli"
version = "0.1.0"
authors = ["Stefan Alfbo <stefan.alfbo@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The rawk cli, which is an AWK interpreter clone. The goal is to be POSIX compatible."
homepage = "https://github.com/stefanalfbo/rawk"
readme = "README.md"
keywords = [
"awk",
"interpreter",
"scripting",
"text-processing",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT"
repository = "https://github.com/stefanalfbo/rawk"
resolver = "2"
[[bin]]
name = "rawk"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "interactive"
path = "tests/interactive.rs"
[dependencies.clap]
version = "4.5.54"
features = ["derive"]
[dependencies.rawk-core]
version = "0.3.1"