2023-11-02 23:10:38 +01:00
|
|
|
[package]
|
|
|
|
name = "axum-oidc"
|
2023-11-29 19:21:52 +01:00
|
|
|
description = "A wrapper for the openidconnect crate for axum"
|
2024-09-23 21:24:56 +02:00
|
|
|
version = "0.5.0"
|
2023-11-02 23:10:38 +01:00
|
|
|
edition = "2021"
|
|
|
|
authors = [ "Paul Z <info@pfz4.de>" ]
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/pfz4/axum-oidc"
|
|
|
|
license = "LGPL-3.0-or-later"
|
|
|
|
keywords = [ "axum", "oidc", "openidconnect", "authentication" ]
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-07 23:18:10 +01:00
|
|
|
thiserror = "1.0"
|
|
|
|
axum-core = "0.4"
|
|
|
|
axum = { version = "0.7", default-features = false, features = [ "query" ] }
|
2024-09-23 21:23:45 +02:00
|
|
|
tower-service = "0.3"
|
2023-12-07 23:18:10 +01:00
|
|
|
tower-layer = "0.3"
|
2024-09-23 21:23:45 +02:00
|
|
|
tower-sessions = { version = "0.13", default-features = false, features = [ "axum-core" ] }
|
2024-03-08 17:17:00 +01:00
|
|
|
http = "1.1"
|
2023-11-03 19:42:54 +01:00
|
|
|
async-trait = "0.1"
|
2024-03-08 17:17:00 +01:00
|
|
|
openidconnect = "3.5"
|
2023-11-03 19:42:54 +01:00
|
|
|
serde = "1.0"
|
|
|
|
futures-util = "0.3"
|
|
|
|
reqwest = { version = "0.11", default-features = false }
|
2024-04-28 10:52:41 +02:00
|
|
|
urlencoding = "2.1"
|