From 9736c9a9c9de6afb29a2dcbfaea8b98fc91f7935 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 18 Jun 2022 11:28:24 +0000 Subject: [PATCH] fix(deps): update rust crate axum to 0.5.8 --- Cargo.lock | 8 ++++---- server/Cargo.toml | 2 +- types/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 44c5eb8..983c209 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -91,9 +91,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" -version = "0.5.7" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc47084705629d09d15060d70a8dbfce479c842303d05929ce29c74c995916ae" +checksum = "8b4d4f9a5ca8b1ab8de59e663e68c6207059239373ca72980f5be7ab81231f74" dependencies = [ "async-trait", "axum-core", @@ -134,9 +134,9 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.2.5" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2efed1c501becea07ce48118786ebcf229531d0d3b28edf224a720020d9e106" +checksum = "cf4d047478b986f14a13edad31a009e2e05cb241f9805d0d75e4cba4e129ad4d" dependencies = [ "async-trait", "bytes", diff --git a/server/Cargo.toml b/server/Cargo.toml index c71e7c2..7cf9797 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.0" edition = "2021" [dependencies] -axum = { version = "0.5.7", features = ["multipart"] } +axum = { version = "0.5.8", 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 c83f52d..3b12d7b 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -13,7 +13,7 @@ uuid = "1.1.2" anyhow = "1.0.57" serde = { version = "1.0.137", features = ["derive"] } zeroize = { version = "1.5.5", features = ["derive"] } -axum = { version = "0.5.7", optional = true } +axum = { version = "0.5.8", optional = true } toml = { version = "0.5.9", optional = true } dirs = { version = "4.0.0", optional = true } crypto-utils = { version = "0.2.0", features = ["sha"], optional = true }