From 43406661f623d3361005ceb274a6703befbadc68 Mon Sep 17 00:00:00 2001 From: Paul Zinselmeyer Date: Sun, 28 Apr 2024 10:52:41 +0200 Subject: [PATCH] v0.4.0 & dependency update --- Cargo.toml | 6 +++--- examples/basic/Cargo.toml | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fbcbb81..75c352d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "axum-oidc" description = "A wrapper for the openidconnect crate for axum" -version = "0.3.0" +version = "0.4.0" edition = "2021" authors = [ "Paul Z " ] readme = "README.md" @@ -17,11 +17,11 @@ axum-core = "0.4" axum = { version = "0.7", default-features = false, features = [ "query" ] } tower-service = "0.3.2" 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" async-trait = "0.1" openidconnect = "3.5" serde = "1.0" futures-util = "0.3" reqwest = { version = "0.11", default-features = false } -urlencoding = "2.1.3" +urlencoding = "2.1" diff --git a/examples/basic/Cargo.toml b/examples/basic/Cargo.toml index fcd75e1..b943d97 100644 --- a/examples/basic/Cargo.toml +++ b/examples/basic/Cargo.toml @@ -6,10 +6,10 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tokio = { version = "1.36.0", features = ["net", "macros", "rt-multi-thread"] } -axum = "0.7.4" +tokio = { version = "1.37", features = ["net", "macros", "rt-multi-thread"] } +axum = "0.7" axum-oidc = { path = "./../.." } -tower = "0.4.13" -tower-sessions = "0.11.0" +tower = "0.4" +tower-sessions = "0.12" -dotenvy = "0.15.7" +dotenvy = "0.15"