vcs-cli-support 0.1.0

Shared CLI-wrapper plumbing for vcs-toolkit-rs: the argv injection guard, fetch-retry policy, and processkit::Error classifiers.
Documentation
[package]
name = "vcs-cli-support"
version = "0.1.0"
description = "Shared CLI-wrapper plumbing for vcs-toolkit-rs: the argv injection guard, fetch-retry policy, and processkit::Error classifiers."
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
readme = "README.md"

[dependencies]
# The structured error these helpers guard against / classify, and the program
# launcher the wrappers share. This is the one dependency — it's why this
# plumbing lives here and not in the std-only `vcs-diff`.
processkit.workspace = true

[features]
# Pull in processkit's `cancellation` feature so `Error::Cancelled` is reachable.
# The classifiers only match `Exit`/`Timeout`, so any other variant (incl.
# `Cancelled`) already falls through to "no"; the feature only lets the test
# construct the variant to pin that as a first-class assertion.
cancellation = ["processkit/cancellation"]

[package.metadata.docs.rs]
# Build docs.rs with every feature so the optional surfaces (mock / tracing /
# cancellation / serde / stream) are documented (defaults alone hide them), and pass
# `--cfg docsrs` so feature-gated items render an "Available on feature `x`" badge.
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[lints]
workspace = true