From cff21d612e421dfe827e2f749daf7d934f02759c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 10:55:16 +0000 Subject: [PATCH] build(deps): bump axum from `7093cee` to `8854e66` Bumps [axum](https://github.com/tokio-rs/axum) from `7093cee` to `8854e66`. - [Release notes](https://github.com/tokio-rs/axum/releases) - [Commits](https://github.com/tokio-rs/axum/compare/7093cee0ace5c3cb81ab6f970ae6ff0e966643ea...8854e660e9ab07404e5bb8e30b92311d3848de05) --- updated-dependencies: - dependency-name: axum dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 70 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5f5da99..4ea126c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -120,7 +120,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" version = "0.6.16" -source = "git+https://github.com/tokio-rs/axum.git?branch=main#7093cee0ace5c3cb81ab6f970ae6ff0e966643ea" +source = "git+https://github.com/tokio-rs/axum.git?branch=main#8854e660e9ab07404e5bb8e30b92311d3848de05" dependencies = [ "async-trait", "axum-core", @@ -130,6 +130,7 @@ dependencies = [ "http-body 0.4.5", "hyper 0.14.27", "hyper 1.0.0-rc.4", + "hyper-util", "itoa", "matchit", "memchr", @@ -152,7 +153,7 @@ dependencies = [ [[package]] name = "axum-core" version = "0.3.4" -source = "git+https://github.com/tokio-rs/axum.git?branch=main#7093cee0ace5c3cb81ab6f970ae6ff0e966643ea" +source = "git+https://github.com/tokio-rs/axum.git?branch=main#8854e660e9ab07404e5bb8e30b92311d3848de05" dependencies = [ "async-trait", "bytes", @@ -170,7 +171,7 @@ dependencies = [ [[package]] name = "axum-macros" version = "0.3.7" -source = "git+https://github.com/tokio-rs/axum.git?branch=main#7093cee0ace5c3cb81ab6f970ae6ff0e966643ea" +source = "git+https://github.com/tokio-rs/axum.git?branch=main#8854e660e9ab07404e5bb8e30b92311d3848de05" dependencies = [ "heck", "proc-macro2", @@ -350,6 +351,31 @@ version = "0.27.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" +[[package]] +name = "h2" +version = "0.3.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" +dependencies = [ + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http", + "indexmap", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + [[package]] name = "heck" version = "0.4.1" @@ -453,6 +479,7 @@ dependencies = [ "bytes", "futures-channel", "futures-util", + "h2", "http", "http-body 1.0.0-rc.2", "httparse", @@ -464,6 +491,36 @@ dependencies = [ "want", ] +[[package]] +name = "hyper-util" +version = "0.0.0" +source = "git+https://github.com/hyperium/hyper-util?rev=d97181a#d97181a278d9c59f1d7f2713732e400440861216" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http", + "http-body 1.0.0-rc.2", + "hyper 1.0.0-rc.4", + "once_cell", + "pin-project-lite", + "socket2 0.5.3", + "tokio", + "tower", + "tower-service", + "tracing", +] + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown", +] + [[package]] name = "itoa" version = "1.0.9" @@ -801,6 +858,15 @@ dependencies = [ "libc", ] +[[package]] +name = "slab" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" +dependencies = [ + "autocfg", +] + [[package]] name = "smallvec" version = "1.11.0" @@ -950,6 +1016,7 @@ dependencies = [ "futures-sink", "pin-project-lite", "tokio", + "tracing", ] [[package]]