mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-23 00:41:13 +00:00
Layered library for blob/tree/commit/ref operations without touching the working directory. Four modules: gitobj (primitives), branchstore (key-value on a branch), snapshot (working dir captures), trailerlink (commit message trailers). 56 tests. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Entire-Checkpoint: 1e40b3267885
18 lines
395 B
TOML
18 lines
395 B
TOML
[package]
|
|
name = "git-storage"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
description = "Store structured data in git without touching the working directory"
|
|
repository = "https://github.com/brynary/attractor-rust"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
git2.workspace = true
|
|
thiserror.workspace = true
|
|
walkdir.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|