[package]
edition = "2024"
rust-version = "1.93"
name = "git-proc"
version = "0.2.0"
authors = ["Markus Schirp <mbj@schirp-dso.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Process-based git CLI wrapper with rich types"
readme = "README.md"
keywords = [
"git",
"cli",
"process",
"types",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/mbj/mrs/tree/main/git-proc"
[features]
test-utils = ["cmd-proc/test-utils"]
[lib]
name = "git_proc"
path = "src/lib.rs"
[dependencies.cmd-proc]
version = "0.3.0"
[dependencies.thiserror]
version = "2"
[dependencies.url]
version = "2.5"
features = ["serde"]
[dev-dependencies.tokio]
version = "1"
features = [
"io-std",
"macros",
"rt",
]
[lints.clippy]
multiple_crate_versions = "deny"
must_use_candidate = "deny"
uninlined_format_args = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
unexpected_cfgs = "deny"