[package]
edition = "2021"
name = "llmgrep"
version = "3.0.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Smart grep over Magellan code maps with schema-aligned JSON output"
documentation = "https://docs.rs/llmgrep"
readme = "README.md"
license = "GPL-3.0-only"
repository = "https://github.com/oldnordic/llmgrep"
[features]
default = ["unix"]
native-v3 = [
"magellan/native-v3",
"sqlitegraph/native-v3",
]
unix = []
unstable-watch = []
windows = []
[lib]
name = "llmgrep"
path = "src/lib.rs"
[[bin]]
name = "detect_debug"
path = "src/bin/detect_debug.rs"
[[bin]]
name = "llmgrep"
path = "src/main.rs"
[[test]]
name = "algorithm_tests"
path = "tests/algorithm_tests.rs"
[[test]]
name = "ast_tests"
path = "tests/ast_tests.rs"
[[test]]
name = "backend_detection_test"
path = "tests/backend_detection_test.rs"
[[test]]
name = "backend_parity_extended_test"
path = "tests/backend_parity_extended_test.rs"
[[test]]
name = "backend_parity_test"
path = "tests/backend_parity_test.rs"
[[test]]
name = "cli_integration_test"
path = "tests/cli_integration_test.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "language_detection_test"
path = "tests/language_detection_test.rs"
[[test]]
name = "native_v3_commands_test"
path = "tests/native_v3_commands_test.rs"
[[test]]
name = "search_tests"
path = "tests/search_tests.rs"
[[test]]
name = "shorthand_tests"
path = "tests/shorthand_tests.rs"
[[test]]
name = "unit_tests"
path = "tests/unit_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.hex]
version = "0.4"
[dependencies.magellan]
version = "2.4.3"
[dependencies.regex]
version = "1.10"
[dependencies.rusqlite]
version = "0.31"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.signal-hook]
version = "0.3"
[dependencies.sqlitegraph]
version = "2.0.3"
[dependencies.tempfile]
version = "3.10"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.rusqlite]
version = "0.31"