vcs-git 0.5.0

Automate the Git CLI from Rust through process execution.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "vcs-git"
version = "0.5.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"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
cancellation = ["processkit/cancellation"]
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.8"

[dependencies.vcs-cli-support]
version = "0.1"

[dependencies.vcs-diff]
version = "0.1"

[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)"]