[package]
edition = "2021"
rust-version = "1.80"
name = "gitr"
version = "0.1.0"
authors = ["Evgeny Khodzitsky"]
build = false
exclude = [
".git",
"target",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async typed git CLI wrapper for agents and automation."
readme = "README.md"
keywords = [
"git",
"async",
"cli",
"agent",
"worktree",
]
categories = [
"development-tools",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/ekhodzitsky/gitr"
[features]
default = ["tracing"]
tracing = ["dep:tracing"]
[lib]
name = "gitr"
path = "src/lib.rs"
[[test]]
name = "repo"
path = "tests/repo.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.44"
features = [
"fs",
"io-util",
"macros",
"process",
"rt",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
optional = true
[dependencies.which]
version = "7.0"
[dev-dependencies.tempfile]
version = "3.27"
[dev-dependencies.tokio]
version = "1.44"
features = [
"rt-multi-thread",
"test-util",
]
[dev-dependencies.tracing-subscriber]
version = "0.3"