2025-06-25 13:29:03 -07:00
|
|
|
[package]
|
2025-07-30 18:37:00 -07:00
|
|
|
edition = "2024"
|
2025-06-25 13:29:03 -07:00
|
|
|
name = "codex-file-search"
|
|
|
|
|
version = { workspace = true }
|
|
|
|
|
|
|
|
|
|
[[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"
|
2025-06-28 14:39:29 -07:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2025-09-15 12:22:29 -07:00
|
|
|
serde_json = "1"
|
2025-06-25 13:29:03 -07:00
|
|
|
tokio = { version = "1", features = ["full"] }
|