[[bin]]
name = "chaf"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
features = ["derive"]
version = "4"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
features = ["fmt", "env-filter"]
version = "0.3"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.predicates]
version = "3.0"
[dev-dependencies.tempfile]
version = "3.8"
[lib]
doctest = false
name = "chaf"
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 CLI filter tool that removes lines based on logical conditions using AND, OR, NOT, and parentheses."
documentation = "https://github.com/nakkiy/chaf"
edition = "2021"
keywords = ["filter", "cli", "log", "text", "dsl"]
license = "MIT OR Apache-2.0"
name = "chaf"
readme = "README.md"
repository = "https://github.com/nakkiy/chaf"
version = "0.1.0"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "engine_tests"
path = "tests/engine_tests.rs"
[[test]]
name = "main_tests"
path = "tests/main_tests.rs"