[package]
edition = "2024"
rust-version = "1.88"
name = "vtcode-file-search"
version = "0.107.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, parallel fuzzy file search library for VT Code"
readme = "README.md"
license = "MIT"
repository = "https://github.com/vinhnx/vtcode"
resolver = "2"
[lib]
name = "vtcode_file_search"
path = "src/lib.rs"
doctest = false
[[bin]]
name = "vtcode-file-search"
path = "src/main.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.6"
features = [
"derive",
"derive",
]
[dependencies.ignore]
version = "0.4"
[dependencies.nucleo-matcher]
version = "0.3"
[dependencies.num_cpus]
version = "1.16"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"derive",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.52"
features = [
"full",
"full",
]
[dependencies.tracing]
version = "0.1"
[dependencies.vtcode-commons]
version = "0.107.0"
[dev-dependencies.tempfile]
version = "3.27"
[lints.clippy]
assertions_on_result_states = "allow"
float_cmp = "allow"
panic = "allow"
panic_in_result_fn = "allow"
unreachable = "allow"
unused_result_ok = "allow"
unwrap_used = "allow"
[lints.rust]
unfulfilled_lint_expectations = "allow"