[package]
edition = "2024"
rust-version = "1.88"
name = "vcs-git"
version = "0.7.0"
authors = ["Anton Zhelezniakou"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Automate Git from Rust: a typed, async wrapper that drives the real git CLI with its exact behavior, config, and credentials."
readme = "README.md"
keywords = [
"git",
"cli",
"automation",
"async",
"subprocess",
]
categories = [
"command-line-utilities",
"api-bindings",
"asynchronous",
"development-tools",
]
license = "MIT"
repository = "https://github.com/ZelAnton/vcs-toolkit-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
mock = [
"dep:mockall",
"processkit/mock",
]
tracing = ["processkit/tracing"]
[lib]
name = "vcs_git"
path = "src/lib.rs"
[[test]]
name = "repo"
path = "tests/repo.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.mockall]
version = "0.13"
optional = true
[dependencies.processkit]
version = "1"
[dependencies.vcs-cli-support]
version = "0.3"
[dependencies.vcs-diff]
version = "0.3"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"time",
"test-util",
]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(docsrs)"]