Compare commits

..

2 commits

Author SHA1 Message Date
57e571bd93
Version 0.5.0 2024-09-23 21:44:37 +02:00
89c3a9ccb4
Dependency Update
Updated dependencies:
- tower-sessions to 0.13
2024-09-23 21:44:37 +02:00
2 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
[package] [package]
name = "axum-oidc" name = "axum-oidc"
description = "A wrapper for the openidconnect crate for axum" description = "A wrapper for the openidconnect crate for axum"
version = "0.4.0" version = "0.5.0"
edition = "2021" edition = "2021"
authors = [ "Paul Z <info@pfz4.de>" ] authors = [ "Paul Z <info@pfz4.de>" ]
readme = "README.md" readme = "README.md"
@ -15,9 +15,9 @@ keywords = [ "axum", "oidc", "openidconnect", "authentication" ]
thiserror = "1.0" thiserror = "1.0"
axum-core = "0.4" axum-core = "0.4"
axum = { version = "0.7", default-features = false, features = [ "query" ] } axum = { version = "0.7", default-features = false, features = [ "query" ] }
tower-service = "0.3.2" tower-service = "0.3"
tower-layer = "0.3" tower-layer = "0.3"
tower-sessions = { version = "0.12", default-features = false, features = [ "axum-core" ] } tower-sessions = { version = "0.13", default-features = false, features = [ "axum-core" ] }
http = "1.1" http = "1.1"
async-trait = "0.1" async-trait = "0.1"
openidconnect = "3.5" openidconnect = "3.5"

View file

@ -10,7 +10,7 @@ tokio = { version = "1.37", features = ["net", "macros", "rt-multi-thread"] }
axum = "0.7" axum = "0.7"
axum-oidc = { path = "./../.." } axum-oidc = { path = "./../.." }
tower = "0.4" tower = "0.4"
tower-sessions = "0.12" tower-sessions = "0.13"
dotenvy = "0.15" dotenvy = "0.15"