Files
llmx/codex-rs/apply-patch/Cargo.toml
Michael Bolin 5a5aa89914 chore: replace regex with regex-lite, where appropriate (#1200)
As explained on https://crates.io/crates/regex-lite, `regex-lite` is a
lighter alternative to `regex` and seems to be sufficient for our
purposes.
2025-06-02 17:11:45 -07:00

24 lines
375 B
TOML

[package]
name = "codex-apply-patch"
version = { workspace = true }
edition = "2024"
[lib]
name = "codex_apply_patch"
path = "src/lib.rs"
[lints]
workspace = true
[dependencies]
anyhow = "1"
serde_json = "1.0.110"
similar = "2.7.0"
thiserror = "2.0.12"
tree-sitter = "0.25.3"
tree-sitter-bash = "0.23.3"
[dev-dependencies]
pretty_assertions = "1.4.1"
tempfile = "3.13.0"