[package]
edition = "2024"
rust-version = "1.88"
name = "vcs-github"
version = "0.8.0"
authors = ["Anton Zhelezniakou"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Automate GitHub from Rust: a typed, async wrapper for the GitHub CLI (gh) — pull requests, issues, releases, and CI checks."
readme = "README.md"
keywords = [
"github",
"gh",
"pull-request",
"cli",
"async",
]
categories = [
"command-line-utilities",
"api-bindings",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/ZelAnton/vcs-toolkit-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
mock = [
"dep:mockall",
"processkit/mock",
]
tracing = ["processkit/tracing"]
[lib]
name = "vcs_github"
path = "src/lib.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.mockall]
version = "0.13"
optional = true
[dependencies.processkit]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.vcs-cli-support]
version = "0.4"
features = ["serde"]
[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)"]