axum-oidc/Cargo.toml

28 lines
860 B
TOML
Raw Normal View History

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-04-28 10:52:41 +02:00
version = "0.4.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" ] }
2023-11-03 19:42:54 +01:00
tower-service = "0.3.2"
2023-12-07 23:18:10 +01:00
tower-layer = "0.3"
2024-04-28 10:52:41 +02:00
tower-sessions = { version = "0.12", default-features = false, features = [ "axum-core" ] }
http = "1.1"
2023-11-03 19:42:54 +01:00
async-trait = "0.1"
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"