greppy-cli 1.3.0

Sub-millisecond semantic code search and trace with AI reranking (Claude/Gemini/Ollama)
Documentation
[package]
name = "greppy-cli"
version = "1.3.0"
edition = "2021"
rust-version = "1.70"
authors = ["kblcode"]
description = "Sub-millisecond semantic code search and trace with AI reranking (Claude/Gemini/Ollama)"
license = "MIT"
repository = "https://github.com/KBLCode/greppy"
homepage = "https://github.com/KBLCode/greppy"
documentation = "https://github.com/KBLCode/greppy#readme"
readme = "README.md"
keywords = ["search", "code", "semantic", "trace", "ai"]
categories = ["command-line-utilities", "development-tools", "text-processing"]
exclude = [
    ".github/",
    ".gitignore",
    "docs/",
    "benches/",
    "tests/",
    "*.gif",
    "*.md",
    "!README.md",
]

[dependencies]
# CLI
clap = { version = "4", features = ["derive"] }

# Search engine
tantivy = "0.25"

# Async runtime
tokio = { version = "1", features = ["full", "net", "sync", "io-util", "fs", "signal"] }

# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
chrono = { version = "0.4", features = ["serde"] }

# File system
notify = "6"
ignore = "0.4"
walkdir = "2"

# Parallel processing (memory-safe, no large allocations)
rayon = "1.10"

# Utilities
thiserror = "1"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
directories = "5"
uuid = { version = "1", features = ["v4"] }
lru = "0.12"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
parking_lot = "0.12"

# Trace module dependencies (semantic indexing)
smallvec = { version = "1.11", features = ["serde"] }
compact_str = { version = "0.7", features = ["serde"] }
memmap2 = "0.9"
bitflags = { version = "2", features = ["serde"] }
once_cell = "1.19"
regex = "1.10"

# Tree-sitter parsing (AST extraction for trace)
tree-sitter = "0.24"
tree-sitter-typescript = "0.23"
tree-sitter-javascript = "0.23"
tree-sitter-python = "0.23"
tree-sitter-rust = "0.23"
tree-sitter-go = "0.23"
streaming-iterator = "0.1"

# Auth & Network
oauth2 = "4.4"
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
axum = "0.7"
open = "5"
url = "2"
urlencoding = "2.1"
rand = "0.8"

# Web UI dependencies
dirs = "5"
glob = "0.3"
futures = "0.3"
tokio-stream = { version = "0.1", features = ["sync"] }

# Interactive CLI
dialoguer = "0.11"

# Platform-specific
[target.'cfg(unix)'.dependencies]
libc = "0.2"

[dev-dependencies]
tempfile = "3"

[lib]
name = "greppy"
path = "src/lib.rs"

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

[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true