feat: standalone file search CLI (#1386)

Standalone fuzzy filename search library that should be helpful in
addressing https://github.com/openai/codex/issues/1261.
This commit is contained in:
Michael Bolin
2025-06-25 13:29:03 -07:00
committed by GitHub
parent 50924101d2
commit 296996d74e
8 changed files with 454 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
[package]
name = "codex-file-search"
version = { workspace = true }
edition = "2024"
[[bin]]
name = "codex-file-search"
path = "src/main.rs"
[lib]
name = "codex_file_search"
path = "src/lib.rs"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
ignore = "0.4.23"
nucleo-matcher = "0.3.1"
serde_json = "1.0.110"
tokio = { version = "1", features = ["full"] }