From 89c3a9ccb48f75f9e78f750d8aceafbe8219104b Mon Sep 17 00:00:00 2001 From: Paul Zinselmeyer Date: Mon, 23 Sep 2024 21:23:45 +0200 Subject: [PATCH] Dependency Update Updated dependencies: - tower-sessions to 0.13 --- Cargo.toml | 4 ++-- examples/basic/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 75c352d..d60c527 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,9 +15,9 @@ keywords = [ "axum", "oidc", "openidconnect", "authentication" ] thiserror = "1.0" axum-core = "0.4" axum = { version = "0.7", default-features = false, features = [ "query" ] } -tower-service = "0.3.2" +tower-service = "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" async-trait = "0.1" openidconnect = "3.5" diff --git a/examples/basic/Cargo.toml b/examples/basic/Cargo.toml index 00449f8..a1b712e 100644 --- a/examples/basic/Cargo.toml +++ b/examples/basic/Cargo.toml @@ -10,7 +10,7 @@ tokio = { version = "1.37", features = ["net", "macros", "rt-multi-thread"] } axum = "0.7" axum-oidc = { path = "./../.." } tower = "0.4" -tower-sessions = "0.12" +tower-sessions = "0.13" dotenvy = "0.15"