mirror of
https://github.com/pfzetto/axum-oidc.git
synced 2024-11-21 19:12:49 +01:00
v0.4.0 & dependency update
This commit is contained in:
parent
88aed8e903
commit
43406661f6
2 changed files with 8 additions and 8 deletions
|
@ -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.3.0"
|
version = "0.4.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = [ "Paul Z <info@pfz4.de>" ]
|
authors = [ "Paul Z <info@pfz4.de>" ]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -17,11 +17,11 @@ 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.2"
|
||||||
tower-layer = "0.3"
|
tower-layer = "0.3"
|
||||||
tower-sessions = { version = "0.11", default-features = false, features = [ "axum-core" ] }
|
tower-sessions = { version = "0.12", 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"
|
||||||
serde = "1.0"
|
serde = "1.0"
|
||||||
futures-util = "0.3"
|
futures-util = "0.3"
|
||||||
reqwest = { version = "0.11", default-features = false }
|
reqwest = { version = "0.11", default-features = false }
|
||||||
urlencoding = "2.1.3"
|
urlencoding = "2.1"
|
||||||
|
|
|
@ -6,10 +6,10 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = { version = "1.36.0", features = ["net", "macros", "rt-multi-thread"] }
|
tokio = { version = "1.37", features = ["net", "macros", "rt-multi-thread"] }
|
||||||
axum = "0.7.4"
|
axum = "0.7"
|
||||||
axum-oidc = { path = "./../.." }
|
axum-oidc = { path = "./../.." }
|
||||||
tower = "0.4.13"
|
tower = "0.4"
|
||||||
tower-sessions = "0.11.0"
|
tower-sessions = "0.12"
|
||||||
|
|
||||||
dotenvy = "0.15.7"
|
dotenvy = "0.15"
|
||||||
|
|
Loading…
Reference in a new issue