mirror of
https://github.com/pfzetto/axum-oidc.git
synced 2025-12-07 16:35:17 +01:00
32 lines
875 B
TOML
32 lines
875 B
TOML
[package]
|
|
name = "axum-oidc"
|
|
description = "A wrapper for the openidconnect crate for axum"
|
|
version = "0.6.0"
|
|
edition = "2021"
|
|
authors = ["Paul Z <info@pfz4.de>"]
|
|
readme = "README.md"
|
|
repository = "https://github.com/pfz4/axum-oidc"
|
|
license = "MPL-2.0"
|
|
keywords = ["axum", "oidc", "openidconnect", "authentication"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
thiserror = "2.0"
|
|
axum-core = "0.5"
|
|
axum = { version = "0.8", default-features = false, features = [
|
|
"query",
|
|
"original-uri",
|
|
] }
|
|
tower-service = "0.3"
|
|
tower-layer = "0.3"
|
|
tower-sessions = { version = "0.14", default-features = false, features = [
|
|
"axum-core",
|
|
] }
|
|
http = "1.3.1"
|
|
openidconnect = "4.0"
|
|
serde = "1.0"
|
|
futures-util = "0.3"
|
|
reqwest = { version = "0.12", default-features = false }
|
|
urlencoding = "2.1"
|
|
tracing = "0.1.41"
|