[[bin]]
name = "detect"
path = "src/main.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
features = ["derive"]
version = "4.5"
[dependencies.futures]
version = "0.3.31"
[dependencies.ignore]
version = "0.4"
[dependencies.miette]
features = ["fancy"]
version = "7.6.0"
[dependencies.pest]
version = "2.7.15"
[dependencies.pest_derive]
version = "2.7.15"
[dependencies.recursion]
features = ["experimental"]
version = "0.5"
[dependencies.regex]
version = "1.12"
[dependencies.regex-automata]
version = "0.4.13"
[dependencies.serde_json]
version = "1.0"
[dependencies.slog]
version = "2.7"
[dependencies.slog-term]
version = "2.9"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
features = ["rt", "rt-multi-thread", "fs", "macros"]
version = "1.48"
[dependencies.tokio-util]
features = ["io"]
version = "0.7.17"
[dependencies.toml]
version = "0.9.8"
[dependencies.yaml-rust2]
version = "0.10.4"
[dev-dependencies.tempfile]
version = "3"
[lib]
name = "detect"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "filesystem"]
description = "Expression-based file search combining name, content, metadata, and structured data predicates"
edition = "2021"
homepage = "https://github.com/inanna-malick/detect/"
keywords = ["egrep", "grep", "pattern", "regex", "search"]
license = "MIT OR Apache-2.0"
name = "detect"
readme = "README.md"
repository = "https://github.com/inanna-malick/detect/"
rust-version = "1.70"
version = "0.3.0"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true
[[test]]
name = "aliases"
path = "tests/aliases.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "navigation_structured"
path = "tests/navigation_structured.rs"
[[test]]
name = "parser_basic"
path = "tests/parser_basic.rs"
[[test]]
name = "parser_edge_cases"
path = "tests/parser_edge_cases.rs"
[[test]]
name = "parser_errors"
path = "tests/parser_errors.rs"
[[test]]
name = "parser_regex"
path = "tests/parser_regex.rs"
[[test]]
name = "parser_structured_path"
path = "tests/parser_structured_path.rs"
[[test]]
name = "parser_structured_selectors"
path = "tests/parser_structured_selectors.rs"
[[test]]
name = "structured_integration"
path = "tests/structured_integration.rs"
[[test]]
name = "temporal_tests"
path = "tests/temporal_tests.rs"
[[test]]
name = "typechecker"
path = "tests/typechecker.rs"