newgit-core 0.2.0

Core domain model for newgit: branch instances, tracker lanes, and resource lifecycles
Documentation
[package]
name = "newgit-core"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
description = "Core domain model for newgit: branch instances, tracker lanes, and resource lifecycles"
readme = "../../README.md"

[lints]
workspace = true

[dependencies]
camino = { version = "1.2", features = ["serde1"] }
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
# Process-group signalling and reaping. Shelling out to `kill` made liveness
# depend on which `kill` was on PATH and could not distinguish a zombie from
# a live process; see supervisor.rs.
nix = { version = "0.30", features = ["signal", "process"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.11"
tempfile = "3"
thiserror = "2"
toml = "1.1"

[dev-dependencies]
tempfile = "3"