[package]
edition = "2024"
rust-version = "1.92"
name = "rawk-core"
version = "0.6.0"
authors = ["Stefan Alfbo <stefan.alfbo@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for an AWK interpreter with the goal 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"
[lib]
name = "rawk_core"
path = "src/lib.rs"
[[test]]
name = "p_tests"
path = "tests/p_tests.rs"
[[test]]
name = "t_tests"
path = "tests/t_tests.rs"
[dependencies.regex]
version = "1"