From 233bfd13a8a4b9da6b3ab67d2611b2758bc244c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Nov 2022 10:01:25 +0000 Subject: [PATCH] build(deps): bump axum-extra from 0.3.7 to 0.4.1 Bumps [axum-extra](https://github.com/tokio-rs/axum) from 0.3.7 to 0.4.1. - [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.3.7...axum-extra-v0.4.1) --- updated-dependencies: - dependency-name: axum-extra dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 70 +++++++++++++++++++++++++++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 65 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c12da9f..2b39a4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -120,7 +120,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "acee9fd5073ab6b045a275b3e709c163dd36c90685219cb21804a147b58dba43" dependencies = [ "async-trait", - "axum-core", + "axum-core 0.2.9", "bitflags", "bytes", "futures-util", @@ -129,7 +129,7 @@ dependencies = [ "http-body", "hyper", "itoa", - "matchit", + "matchit 0.5.0", "memchr", "mime", "multer", @@ -146,6 +146,35 @@ dependencies = [ "tower-service", ] +[[package]] +name = "axum" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08b108ad2665fa3f6e6a517c3d80ec3e77d224c47d605167aefaa5d7ef97fa48" +dependencies = [ + "async-trait", + "axum-core 0.3.0", + "bitflags", + "bytes", + "futures-util", + "http", + "http-body", + "hyper", + "itoa", + "matchit 0.7.0", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "rustversion", + "serde", + "sync_wrapper", + "tower", + "tower-http", + "tower-layer", + "tower-service", +] + [[package]] name = "axum-core" version = "0.2.9" @@ -162,13 +191,30 @@ dependencies = [ "tower-service", ] +[[package]] +name = "axum-core" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79b8558f5a0581152dc94dcd289132a1d377494bdeafcd41869b3258e3e2ad92" +dependencies = [ + "async-trait", + "bytes", + "futures-util", + "http", + "http-body", + "mime", + "rustversion", + "tower-layer", + "tower-service", +] + [[package]] name = "axum-extra" -version = "0.3.7" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69034b3b0fd97923eee2ce8a47540edb21e07f48f87f67d44bb4271cec622bdb" +checksum = "256d21542ab2ccf04a433fdb025a466ca5c28ec6c63ee69d1e71b41b475efbac" dependencies = [ - "axum", + "axum 0.6.1", "bytes", "cookie", "futures-util", @@ -195,7 +241,7 @@ dependencies = [ "aes-gcm", "anyhow", "askama", - "axum", + "axum 0.5.17", "axum-extra", "base64", "clap", @@ -874,6 +920,12 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb" +[[package]] +name = "matchit" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" + [[package]] name = "memchr" version = "2.5.0" @@ -1337,6 +1389,12 @@ dependencies = [ "base64", ] +[[package]] +name = "rustversion" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8" + [[package]] name = "ryu" version = "1.0.11" diff --git a/Cargo.toml b/Cargo.toml index de27ed6..bea1a20 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ aes-gcm = { version = "0.9.4", default-features = false, features = ["aes", "std anyhow = { version = "1.0.66", default-features = false, features = ["std"] } askama = { version = "0.11.1", default-features = false } axum = { version = "0.5.17", default-features = false, features = ["headers", "json", "multipart", "query"] } -axum-extra = { version = "0.3.7", default-features = false, features = ["cookie"] } +axum-extra = { version = "0.4.1", default-features = false, features = ["cookie"] } base64 = { version = "0.13.1", default-features = false } clap = { version = "4.0.29", default-features = false, features = ["derive", "error-context", "help", "std", "usage", "wrap_help"] } confargs = { version = "0.1.1", default-features = false }