grite 0.5.3

Git-backed issue tracker with CRDT merging, designed for AI coding agents
[package]
name = "grite"
version.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
keywords.workspace = true
categories.workspace = true
description = "Git-backed issue tracker with CRDT merging, designed for AI coding agents"
readme = "README.md"
authors.workspace = true

[[bin]]
name = "grite"
path = "src/main.rs"

[dependencies]
libgrite-core = { path = "../libgrite-core", version = "0.5.1" }
libgrite-git = { path = "../libgrite-git", version = "0.5.1" }
libgrite-ipc = { path = "../libgrite-ipc", version = "0.5.1" }
libgrite-cli = { path = "../libgrite-cli", version = "0.5.1" }
clap = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
hex = { workspace = true }
chrono = { workspace = true }
uuid = { workspace = true }
sha2 = { workspace = true }
glob = { workspace = true }
git2 = { workspace = true }
comfy-table = { workspace = true }
regex = { workspace = true }

[target.'cfg(unix)'.dependencies]
libc = "0.2"

[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
tempfile = "3.10"