[package]
edition = "2024"
name = "treegrep"
version = "2.0.0"
authors = ["Timothy Cronin"]
build = false
include = ["/src"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "regex pattern matcher that displays results in a tree structure with an interface to jump to matched text"
homepage = "https://github.com/4imothy/treegrep"
documentation = "https://github.com/4imothy/treegrep/tree/main/README.md"
readme = "README.md"
keywords = [
"regex",
"grep",
"search",
"tree",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT"
repository = "https://github.com/4imothy/treegrep"
[features]
overwrite = ["test"]
test = []
[[bin]]
name = "tgrep"
path = "src/main.rs"
[dependencies.bstr]
version = "1.12.1"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.clap_complete]
version = "4.6.4"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.crossterm]
version = "0.29.0"
features = ["use-dev-tty"]
[dependencies.dunce]
version = "1.0.5"
[dependencies.grep]
version = "0.4.1"
[dependencies.ignore]
version = "0.4.25"
[dependencies.regex]
version = "1.12.3"
[dependencies.serde_json]
version = "1.0.149"
[dependencies.shlex]
version = "1.3.0"
[dependencies.signal-hook]
version = "0.4.4"