[package]
edition = "2021"
name = "llmgrep"
version = "3.1.8"
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"
repository = "https://github.com/oldnordic/llmgrep"
[features]
default = ["unix"]
geometric-backend = ["magellan/geometric-backend"]
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 = "cli_integration_test"
path = "tests/cli_integration_test.rs"
[[test]]
name = "commands_test"
path = "tests/commands_test.rs"
[[test]]
name = "component_integration_geometric"
path = "tests/component_integration_geometric.rs"
[[test]]
name = "coverage_search_tests"
path = "tests/coverage_search_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "language_detection_test"
path = "tests/language_detection_test.rs"
[[test]]
name = "search_tests"
path = "tests/search_tests.rs"
[[test]]
name = "shorthand_tests"
path = "tests/shorthand_tests.rs"
[[test]]
name = "system_integration_tests"
path = "tests/system_integration_tests.rs"
[[test]]
name = "unit_integration_geometric"
path = "tests/unit_integration_geometric.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 = "3.2.0"
features = ["sqlite-backend"]
[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.7"
[dependencies.tempfile]
version = "3.10"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.rusqlite]
version = "0.31"