From 19c070cf5bc3fc31e532dde62cec39646899520e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 19:35:45 +0000 Subject: [PATCH] build(deps): bump axum-extra from 0.7.7 to 0.8.0 Bumps [axum-extra](https://github.com/tokio-rs/axum) from 0.7.7 to 0.8.0. - [Release notes](https://github.com/tokio-rs/axum/releases) - [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/axum/compare/axum-extra-v0.7.7...axum-extra-v0.8.0) --- updated-dependencies: - dependency-name: axum-extra dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/axum-utils/Cargo.toml | 2 +- crates/handlers/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cff09fca..ece9a0d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -561,9 +561,9 @@ dependencies = [ [[package]] name = "axum-extra" -version = "0.7.7" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a93e433be9382c737320af3924f7d5fc6f89c155cf2bf88949d8f5126fab283f" +checksum = "4ab90e7b70bea63a153137162affb6a0bce26b584c24a4c7885509783e2cf30b" dependencies = [ "axum", "axum-core", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 93c42747..18754121 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -10,7 +10,7 @@ repository.workspace = true [dependencies] async-trait = "0.1.73" axum = { version = "0.6.20", features = ["headers"] } -axum-extra = { version = "0.7.7", features = ["cookie-private", "cookie-key-expansion"] } +axum-extra = { version = "0.8.0", features = ["cookie-private", "cookie-key-expansion"] } chrono.workspace = true data-encoding = "2.4.0" futures-util = "0.3.28" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index bcf4bfc9..a9da9bd8 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -28,7 +28,7 @@ tower = "0.4.13" tower-http = { version = "0.4.4", features = ["cors"] } axum = "0.6.20" axum-macros = "0.3.8" -axum-extra = { version = "0.7.7", features = ["cookie-private"] } +axum-extra = { version = "0.8.0", features = ["cookie-private"] } async-graphql = { version = "6.0.6", features = ["tracing", "apollo_tracing"] }