## Summary - centralize file name derivation in codex-file-search - reuse the helper in app-server fuzzy search to avoid duplicate logic - add unit tests for file_name_from_path ## Testing - cargo test -p codex-file-search - cargo test -p codex-app-server
25 lines
585 B
TOML
25 lines
585 B
TOML
[package]
|
|
name = "codex-file-search"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "codex-file-search"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "codex_file_search"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
ignore = { workspace = true }
|
|
nucleo-matcher = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|