[package]
name = "ssot-sync-github"
version = "0.1.0"
edition = "2021"
rust-version = "1.85"
license = "Apache-2.0"
description = "GitHub Issues adapter for the SSOT sync ecosystem"
repository = "https://github.com/menot-you/ssot-sync-github"
homepage = "https://github.com/menot-you/ssot-sync-github"
documentation = "https://docs.rs/ssot-sync-github"
readme = "README.md"
keywords = ["ssot", "sync", "github", "adapter"]
categories = ["api-bindings", "asynchronous"]
[lints.clippy]
unwrap_used = "deny"
expect_used = "deny"
[dependencies]
ssot-protocol = "0.1.0"
ssot-client = "0.1.0"
ssot-sync = "0.1.0"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
async-trait = "0.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]