From 35e33624b09347b551b1b7af0a4959095163c0a6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Apr 2023 10:41:47 +0000 Subject: [PATCH] build(deps): bump axum-extra from 0.7.1 to 0.7.3 Bumps [axum-extra](https://github.com/tokio-rs/axum) from 0.7.1 to 0.7.3. - [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.1...axum-extra-v0.7.3) --- updated-dependencies: - dependency-name: axum-extra dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 +++++++++------- crates/axum-utils/Cargo.toml | 2 +- crates/handlers/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8710ccc1..8141b7fe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -822,9 +822,9 @@ dependencies = [ [[package]] name = "axum" -version = "0.6.11" +version = "0.6.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13d8068b6ccb8b34db9de397c7043f91db8b4c66414952c6db944f238c4d3db3" +checksum = "3b32c5ea3aabaf4deb5f5ced2d688ec0844c881c9e6c696a8b769a05fc691e62" dependencies = [ "async-trait", "axum-core", @@ -855,9 +855,9 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.3.3" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2f958c80c248b34b9a877a643811be8dbca03ca5ba827f2b63baf3a81e5fc4e" +checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" dependencies = [ "async-trait", "bytes 1.4.0", @@ -872,11 +872,12 @@ dependencies = [ [[package]] name = "axum-extra" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ea61f9f77592526b73fd14fe0f5938412bda49423f8b9f372ac76a9d6cf0ad2" +checksum = "fe82ff817f40f735cdfd7092f810d3de63bf875f50d1f0c17928e28cdab64437" dependencies = [ "axum", + "axum-core", "bytes 1.4.0", "cookie", "futures-util", @@ -884,6 +885,7 @@ dependencies = [ "http-body", "mime", "pin-project-lite", + "serde", "tokio", "tower", "tower-http", @@ -5860,7 +5862,7 @@ checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" dependencies = [ "proc-macro2 1.0.52", "quote 1.0.26", - "syn 2.0.4", + "syn 2.0.12", ] [[package]] diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index b28c51b4..9d3fc26d 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] async-trait = "0.1.68" axum = { version = "0.6.11", features = ["headers"] } -axum-extra = { version = "0.7.2", features = ["cookie-private"] } +axum-extra = { version = "0.7.3", features = ["cookie-private"] } chrono = "0.4.24" data-encoding = "2.3.3" futures-util = "0.3.27" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 48a0302f..e9b1bd34 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -24,7 +24,7 @@ tower = "0.4.13" tower-http = { version = "0.4.0", features = ["cors"] } axum = "0.6.11" axum-macros = "0.3.6" -axum-extra = { version = "0.7.2", features = ["cookie-private"] } +axum-extra = { version = "0.7.3", features = ["cookie-private"] } async-graphql = { version = "5.0.6", features = ["tracing", "apollo_tracing"] }