[package]
edition = "2024"
rust-version = "1.88"
name = "vcs-forge"
version = "0.1.0"
authors = ["Anton Zhelezniakou"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A backend-agnostic facade over the GitHub/GitLab/Gitea CLI wrappers (gh/glab/tea)."
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 = [
"vcs-github/cancellation",
"vcs-gitlab/cancellation",
"vcs-gitea/cancellation",
]
serde = ["dep:serde"]
tracing = [
"vcs-github/tracing",
"vcs-gitlab/tracing",
"vcs-gitea/tracing",
]
[lib]
name = "vcs_forge"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.processkit]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.vcs-cli-support]
version = "0.1"
[dependencies.vcs-gitea]
version = "0.1"
[dependencies.vcs-github]
version = "0.5"
[dependencies.vcs-gitlab]
version = "0.1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(docsrs)"]