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
22 lines
429 B
TOML
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"] }
|