[package]
edition = "2021"
rust-version = "1.75"
name = "libgrit-git"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Git WAL, sync, and snapshot operations for grit"
homepage = "https://github.com/neul-labs/grit"
documentation = "https://docs.neullabs.com/grit"
readme = "README.md"
keywords = [
"git",
"issue-tracker",
"crdt",
"agents",
"distributed",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/neul-labs/grit"
[lib]
name = "libgrit_git"
path = "src/lib.rs"
[[test]]
name = "stress_locks"
path = "tests/stress_locks.rs"
[[test]]
name = "stress_wal"
path = "tests/stress_wal.rs"
[dependencies.blake2]
version = "0.10"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.ciborium]
version = "0.2"
[dependencies.git2]
version = "0.20"
[dependencies.hex]
version = "0.4"
[dependencies.libgrit-core]
version = "0.2.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.10"