736c41ecd6
* feat: MCP * chore: Update docs for - feat: MCP * feat: Perf optimizations * chore: Update docs for - feat: Perf optimizations
82 lines
1.6 KiB
TOML
82 lines
1.6 KiB
TOML
[package]
|
|
name = "fff-nvim"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[features]
|
|
default = []
|
|
zlob = ["fff-core/zlob"]
|
|
|
|
[[bin]]
|
|
name = "test_watcher"
|
|
path = "src/bin/test_watcher.rs"
|
|
|
|
[[bin]]
|
|
name = "jemalloc_profile"
|
|
path = "src/bin/jemalloc_profile.rs"
|
|
|
|
[[bin]]
|
|
name = "search_profiler"
|
|
path = "src/bin/search_profiler.rs"
|
|
|
|
[[bin]]
|
|
name = "bench_search_only"
|
|
path = "src/bin/bench_search_only.rs"
|
|
|
|
[[bin]]
|
|
name = "grep_profiler"
|
|
path = "src/bin/grep_profiler.rs"
|
|
|
|
[[bin]]
|
|
name = "grep_vs_rg"
|
|
path = "src/bin/grep_vs_rg.rs"
|
|
|
|
[dependencies]
|
|
# Workspace dependencies
|
|
ahash = { workspace = true }
|
|
rayon = { workspace = true }
|
|
smallvec = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
# Local crates
|
|
fff-core = { path = "../fff-core" }
|
|
fff-query-parser = { path = "../fff-query-parser" }
|
|
|
|
# External dependencies
|
|
blake3 = "1.8.2"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
ctrlc = "3.4.2"
|
|
dirs = "5.0"
|
|
git2 = { workspace = true }
|
|
glidesort = "0.1"
|
|
heed = "0.22.0"
|
|
ignore = "0.4.22"
|
|
mimalloc = "0.1.47"
|
|
mlua = { version = "0.11.1", features = ["module", "luajit"] }
|
|
neo_frizbee = { workspace = true }
|
|
notify = "8.1.0"
|
|
notify-debouncer-full = "0.6"
|
|
once_cell = "1.20.2"
|
|
pathdiff = "0.2.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
smartstring = { version = "1.0.1", features = ["serde"] }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
|
tempfile = "3.8"
|
|
|
|
[[bench]]
|
|
name = "indexing_and_search"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "query_tracker_bench"
|
|
harness = false
|
|
|