greplm-cli 0.5.0

greplm command-line interface.
[package]
name = "greplm-cli"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
description = "greplm command-line interface."

[[bin]]
name = "greplm"
path = "src/main.rs"

[features]
default = []
# Optional offline semantic (vector) search.
semantic = ["greplm-core/semantic"]

[dependencies]
anyhow = "1.0.102"
clap = { version = "4.6.1", features = ["derive"] }
greplm-core = { workspace = true }
# Indexing and query verification are allocation-heavy across rayon workers
# (per-file buffers, per-row strings). The system allocators — glibc's arena
# fallback and macOS libsystem_malloc especially — serialize badly under that
# pattern; mimalloc's per-thread heaps do not.
mimalloc = { version = "0.1", default-features = false }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }

[target.'cfg(unix)'.dependencies]
# Restore the default SIGPIPE disposition so piping output into `head` (etc.)
# terminates quietly instead of panicking on a broken pipe.
libc = "0.2.186"