From bbe3fc24d84881d50d912fce0ad0bdfc80b6d3f0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Oct 2024 09:46:36 +0000 Subject: [PATCH] Bump axum from 0.6.20 to 0.7.7 Bumps [axum](https://github.com/tokio-rs/axum) from 0.6.20 to 0.7.7. - [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.6.20...axum-v0.7.7) --- updated-dependencies: - dependency-name: axum dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 58 +++----------------------------------- crates/micro-oz/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 55 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 67011c53..83a79fa7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -906,38 +906,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "axum" -version = "0.6.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf" -dependencies = [ - "async-trait", - "axum-core 0.3.4", - "bitflags 1.3.2", - "bytes", - "futures-util", - "http 0.2.12", - "http-body 0.4.6", - "hyper 0.14.30", - "itoa", - "matchit", - "memchr", - "mime", - "percent-encoding", - "pin-project-lite", - "rustversion", - "serde", - "serde_json", - "serde_path_to_error", - "serde_urlencoded", - "sync_wrapper 0.1.2", - "tokio", - "tower 0.4.13", - "tower-layer", - "tower-service", -] - [[package]] name = "axum" version = "0.7.7" @@ -945,7 +913,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "504e3947307ac8326a5437504c517c4b56716c9d98fac0028c2acc7ca47d70ae" dependencies = [ "async-trait", - "axum-core 0.4.5", + "axum-core", "bytes", "futures-util", "http 1.1.0", @@ -972,23 +940,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "axum-core" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" -dependencies = [ - "async-trait", - "bytes", - "futures-util", - "http 0.2.12", - "http-body 0.4.6", - "mime", - "rustversion", - "tower-layer", - "tower-service", -] - [[package]] name = "axum-core" version = "0.4.5" @@ -3784,7 +3735,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" dependencies = [ "cfg-if", - "windows-targets 0.52.6", + "windows-targets 0.48.5", ] [[package]] @@ -4026,7 +3977,7 @@ version = "0.1.0" dependencies = [ "anyhow", "async-trait", - "axum 0.6.20", + "axum", "chrono", "clap 4.5.20", "ethers", @@ -6073,7 +6024,7 @@ dependencies = [ "anyhow", "async-stream", "async-trait", - "axum 0.7.7", + "axum", "axum-server", "bytes", "chrono", @@ -7066,7 +7017,6 @@ dependencies = [ "futures-util", "pin-project", "pin-project-lite", - "tokio", "tower-layer", "tower-service", "tracing", diff --git a/crates/micro-oz/Cargo.toml b/crates/micro-oz/Cargo.toml index 2e0d7f79..678cb125 100644 --- a/crates/micro-oz/Cargo.toml +++ b/crates/micro-oz/Cargo.toml @@ -8,7 +8,7 @@ publish = false anyhow = "1.0.72" async-trait = "0.1.71" -axum = "0.6.19" +axum = "0.7.7" chrono = "0.4.26" clap = { version = "4.3.14", features = ["env", "derive"] } ethers = { version = "2.0.10", features = ["openssl"] }