[package]
edition = "2024"
name = "vcs-git"
version = "0.1.0"
authors = ["Anton Zhelezniakou"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Automate the Git CLI from Rust through process execution."
readme = "README.md"
license = "MIT"
repository = "https://github.com/ZelAnton/vcs-toolkit-rs"
[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 = "0.3"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]