Publish harness and TUI open-source
initial sync from the monorepo
This commit is contained in:
commit
c68e39f604
2734 changed files with 1437016 additions and 0 deletions
26
crates/codegen/xai-hunk-tracker/Cargo.toml
Normal file
26
crates/codegen/xai-hunk-tracker/Cargo.toml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
[package]
|
||||
license = "Apache-2.0"
|
||||
name = "xai-hunk-tracker"
|
||||
version = "0.1.0"
|
||||
edition.workspace = true
|
||||
description = "Track file hunks (diffs) with agent/external attribution"
|
||||
|
||||
[dependencies]
|
||||
# External
|
||||
chrono = { workspace = true, features = ["serde"] }
|
||||
dunce = { workspace = true }
|
||||
rustc-hash = { workspace = true }
|
||||
gix = { workspace = true, features = ["status", "index", "parallel"] }
|
||||
serde = { workspace = true, features = ["derive", "rc"] }
|
||||
xai-gix-status = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
similar = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
tokio = { workspace = true, features = ["full"] }
|
||||
tokio-util = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
uuid = { workspace = true, features = ["v4"] }
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = { workspace = true }
|
||||
xai-test-utils = { workspace = true }
|
||||
Loading…
Reference in a new issue