[package]
edition = "2021"
name = "authkestra-providers-github"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GitHub OAuth provider for the authkestra framework"
readme = "README.md"
keywords = [
"auth",
"oauth2",
"github",
]
categories = ["authentication"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/marcjazz/authkestra-rs"
[lib]
name = "authkestra_providers_github"
path = "src/lib.rs"
[[test]]
name = "github_oauth"
path = "tests/github_oauth.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.authkestra-core]
version = "0.1.0"
[dependencies.reqwest]
version = "0.13.1"
features = [
"json",
"form",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
version = "1.0"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.wiremock]
version = "0.6.5"