[package]
name = "vcs-github"
version = "0.6.0"
description = "Automate GitHub from Rust: a typed, async wrapper for the GitHub CLI (gh) — pull requests, issues, releases, and CI checks."
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
readme = "README.md"
keywords = ["github","gh","pull-request","cli","async"]
categories = ["command-line-utilities","api-bindings","asynchronous"]
[dependencies]
processkit.workspace = true
vcs-cli-support = { path = "../cli-support", version = "0.2" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
async-trait = "0.1"
mockall = { version = "0.13", optional = true }
[features]
mock = ["dep:mockall", "processkit/mock"]
tracing = ["processkit/tracing"]
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time", "test-util"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lints]
workspace = true