[package]
edition = "2024"
name = "speedgrep"
version = "1.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "a simple grep tool"
homepage = "https://github.com/G0o53/speedgrep"
readme = "README.md"
keywords = [
"search",
"grep",
"substring",
"performance",
]
categories = [
"text-processing",
"command-line-utilities",
"algorithms",
]
license = "MPL-2.0"
repository = "https://github.com/G0o53/speedgrep"
[lib]
name = "speedgrep"
path = "src/lib.rs"
[[bin]]
name = "quietgrep"
path = "src/qg.rs"
[[bin]]
name = "speedgrep"
path = "src/main.rs"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"