From 29b526c72f849dd046f07222b88fa842ef4b3cf9 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 16 May 2022 11:34:48 +0000 Subject: [PATCH] fix(deps): update rust crate axum to 0.5.6 --- Cargo.lock | 4 ++-- server/Cargo.toml | 2 +- types/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c56959a..60d7706 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -91,9 +91,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" -version = "0.5.5" +version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00f1e8a972137fad81e2a1a60b86ff17ce0338f8017264e45a9723d0083c39a1" +checksum = "ab2504b827a8bef941ba3dd64bdffe9cf56ca182908a147edd6189c95fbcae7d" dependencies = [ "async-trait", "axum-core", diff --git a/server/Cargo.toml b/server/Cargo.toml index 7718277..8f9ec6a 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.0" edition = "2021" [dependencies] -axum = { version = "0.5.5", features = ["multipart"] } +axum = { version = "0.5.6", features = ["multipart"] } log = "0.4.17" thiserror = "1.0.31" serde = { version = "1.0.137", features = ["derive"] } diff --git a/types/Cargo.toml b/types/Cargo.toml index 3f9778a..5f704a1 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -13,7 +13,7 @@ uuid = "1.0.0" anyhow = "1.0.57" serde = { version = "1.0.137", features = ["derive"] } zeroize = { version = "1.5.5", features = ["derive"] } -axum = { version = "0.5.5", optional = true } +axum = { version = "0.5.6", optional = true } # config toml = { version = "0.5.9", optional = true }