[package]
edition = "2024"
rust-version = "1.88"
name = "vcs-cli-support"
version = "0.2.0"
authors = ["Anton Zhelezniakou"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared plumbing for CLI-wrapping crates: an argv injection guard, a managed client with retry (fetch + lock contention) and credential injection, and processkit error classifiers."
readme = "README.md"
keywords = [
"cli",
"subprocess",
"retry",
"error",
"vcs",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/ZelAnton/vcs-toolkit-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "vcs_cli_support"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.processkit]
version = "0.11.0"
[dependencies.tokio]
version = "1"
features = ["time"]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"time",
]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(docsrs)"]