feat: baseline lib (#18848)

This add with 2 entry point:
* `reset_git_repository` that takes a directory and set it as a new git
root
* `diff_since_latest_init` this returns the diff for a given directory
since the last `reset_git_repository`
This commit is contained in:
jif-oai
2026-04-21 17:24:30 +01:00
committed by GitHub
parent 53cf12cd52
commit bf2a34b4b2
6 changed files with 1784 additions and 30 deletions

View File

@@ -9,14 +9,18 @@ readme = "README.md"
workspace = true
[dependencies]
anyhow = { workspace = true }
chrono = { workspace = true }
codex-exec-server = { workspace = true }
codex-protocol = { workspace = true }
codex-utils-absolute-path = { workspace = true }
futures = { workspace = true, features = ["alloc"] }
gix = { workspace = true }
once_cell = { workspace = true }
regex = "1"
schemars = { workspace = true }
serde = { workspace = true, features = ["derive"] }
similar = { workspace = true }
tempfile = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["macros", "process", "rt", "time"] }