From 2b9977369dea34f6dfd0c69eed6edc371a2a6fd1 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 8 Jun 2022 18:02:01 +0000 Subject: [PATCH] fix(deps): update rust crate axum to 0.5.7 --- Cargo.lock | 9 ++++----- server/Cargo.toml | 2 +- types/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 85dd278..7fd3929 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -91,9 +91,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" -version = "0.5.6" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab2504b827a8bef941ba3dd64bdffe9cf56ca182908a147edd6189c95fbcae7d" +checksum = "dc47084705629d09d15060d70a8dbfce479c842303d05929ce29c74c995916ae" dependencies = [ "async-trait", "axum-core", @@ -134,9 +134,9 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da31c0ed7b4690e2c78fe4b880d21cd7db04a346ebc658b4270251b695437f17" +checksum = "c2efed1c501becea07ce48118786ebcf229531d0d3b28edf224a720020d9e106" dependencies = [ "async-trait", "bytes", @@ -1691,7 +1691,6 @@ dependencies = [ "pin-project", "pin-project-lite", "tokio", - "tokio-util", "tower-layer", "tower-service", "tracing", diff --git a/server/Cargo.toml b/server/Cargo.toml index a946726..0b1638e 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.0" edition = "2021" [dependencies] -axum = { version = "0.5.6", features = ["multipart"] } +axum = { version = "0.5.7", features = ["multipart"] } axum-auth = "0.2.0" base64 = "0.13.0" byte-unit = "4.0.14" diff --git a/types/Cargo.toml b/types/Cargo.toml index 1f9a430..10cfbfa 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -13,7 +13,7 @@ uuid = "1.1.1" anyhow = "1.0.57" serde = { version = "1.0.137", features = ["derive"] } zeroize = { version = "1.5.5", features = ["derive"] } -axum = { version = "0.5.6", optional = true } +axum = { version = "0.5.7", optional = true } # config toml = { version = "0.5.9", optional = true }