[package]
edition = "2021"
rust-version = "1.85"
name = "ssot-sync-github"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GitHub Issues adapter for the SSOT sync ecosystem"
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",
]
license = "Apache-2.0"
repository = "https://github.com/menot-you/ssot-sync-github"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "ssot_sync_github"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.ssot-client]
version = "0.1.0"
[dependencies.ssot-protocol]
version = "0.1.0"
[dependencies.ssot-sync]
version = "0.1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"