Files
llmx/codex-rs/file-search/Cargo.toml
Michael Bolin ca8bd09d56 chore: simplify dep so serde=1 in Cargo.toml (#3664)
With this change, dependabot should just have to update `Cargo.lock` for
`serde`, e.g.:

- https://github.com/openai/codex/pull/3617
- https://github.com/openai/codex/pull/3618
2025-09-15 19:22:29 +00:00

22 lines
429 B
TOML

[package]
edition = "2024"
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"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }