[package]
edition = "2021"
name = "authkestra-flow"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OAuth2 and OIDC flow orchestration for the authkestra framework"
readme = "README.md"
keywords = [
"auth",
"oauth2",
"oidc",
"flow",
]
categories = ["authentication"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/marcjazz/authkestra"
[features]
session = ["dep:authkestra-session"]
token = ["dep:authkestra-token"]
[lib]
name = "authkestra_flow"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.authkestra-core]
version = "0.1.2"
[dependencies.authkestra-session]
version = "0.1.1"
optional = true
[dependencies.authkestra-token]
version = "0.1.1"
optional = true
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.log]
version = "0.4"
[dependencies.reqwest]
version = "0.13.1"
features = [
"json",
"form",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.uuid]
version = "1.0"
features = ["v4"]