Implement chrs-graph: Dolt-backed versioned state management

This commit is contained in:
anthonyrawlins
2026-03-03 17:24:05 +11:00
parent b3c37825b2
commit 9692025790
2 changed files with 124 additions and 0 deletions

14
chrs-graph/Cargo.toml Normal file
View File

@@ -0,0 +1,14 @@
[package]
name = "chrs-graph"
version = "0.1.0"
edition = "2024"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["serde", "v4"] }
[dev-dependencies]
tempfile = "3"