From c2ae2e96f9ca5182a882ff6e7654d04710c20255 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Jan 2023 09:15:14 +0000 Subject: [PATCH] build(deps): bump axum from 0.5.17 to 0.6.4 Bumps [axum](https://github.com/tokio-rs/axum) from 0.5.17 to 0.6.4. - [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-v0.5.17...axum-v0.6.4) --- updated-dependencies: - dependency-name: axum dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 65 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index da5a40f..47c6d57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -120,7 +120,36 @@ 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", + "http", + "http-body", + "hyper", + "itoa", + "matchit 0.5.0", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "serde", + "sync_wrapper", + "tokio", + "tower", + "tower-http", + "tower-layer", + "tower-service", +] + +[[package]] +name = "axum" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5694b64066a2459918d8074c2ce0d5a88f409431994c2356617c8ae0c4721fc" +dependencies = [ + "async-trait", + "axum-core 0.3.2", "bitflags", "bytes", "futures-util", @@ -129,17 +158,18 @@ dependencies = [ "http-body", "hyper", "itoa", - "matchit", + "matchit 0.7.0", "memchr", "mime", "multer", "percent-encoding", "pin-project-lite", + "rustversion", "serde", "serde_json", + "serde_path_to_error", "serde_urlencoded", "sync_wrapper", - "tokio", "tower", "tower-http", "tower-layer", @@ -162,13 +192,30 @@ dependencies = [ "tower-service", ] +[[package]] +name = "axum-core" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cae3e661676ffbacb30f1a824089a8c9150e71017f7e1e38f2aa32009188d34" +dependencies = [ + "async-trait", + "bytes", + "futures-util", + "http", + "http-body", + "mime", + "rustversion", + "tower-layer", + "tower-service", +] + [[package]] name = "axum-extra" version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69034b3b0fd97923eee2ce8a47540edb21e07f48f87f67d44bb4271cec622bdb" dependencies = [ - "axum", + "axum 0.5.17", "bytes", "cookie", "futures-util", @@ -195,7 +242,7 @@ dependencies = [ "aes-gcm", "anyhow", "askama", - "axum", + "axum 0.6.4", "axum-extra", "base64", "clap", @@ -915,6 +962,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" @@ -1381,6 +1434,12 @@ dependencies = [ "base64", ] +[[package]] +name = "rustversion" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70" + [[package]] name = "ryu" version = "1.0.11" diff --git a/Cargo.toml b/Cargo.toml index fb5a1fb..a678d1f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" 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 = { version = "0.6.4", default-features = false, features = ["headers", "json", "multipart", "query"] } axum-extra = { version = "0.3.7", 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"] }