Files
llmx/codex-rs/file-search/Cargo.toml
Michael Bolin 296996d74e feat: standalone file search CLI (#1386)
Standalone fuzzy filename search library that should be helpful in
addressing https://github.com/openai/codex/issues/1261.
2025-06-25 13:29:03 -07:00

21 lines
386 B
TOML

[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"] }