From 8a78dd2d3c678a34c77ff138b681a6747cecdba4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 Jul 2022 02:12:16 +0000 Subject: [PATCH] fix(deps): update all non-major dependencies --- Cargo.lock | 12 ++++++------ server/Cargo.toml | 4 ++-- types/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 81940b5..6c0c148 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -91,9 +91,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" -version = "0.5.11" +version = "0.5.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2cc6e8e8c993cb61a005fab8c1e5093a29199b7253b05a6883999312935c1ff" +checksum = "d16705af05732b7d3258ec0f7b73c03a658a28925e050d8852d5b568ee8bcf4e" dependencies = [ "async-trait", "axum-core", @@ -134,9 +134,9 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.2.6" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf4d047478b986f14a13edad31a009e2e05cb241f9805d0d75e4cba4e129ad4d" +checksum = "e4f44a0e6200e9d11a1cdc989e4b358f6e3d354fbf48478f345a17f4e43f8635" dependencies = [ "async-trait", "bytes", @@ -758,9 +758,9 @@ checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" [[package]] name = "hyper" -version = "0.14.19" +version = "0.14.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42dc3c131584288d375f2d07f822b0cb012d8c6fb899a5b9fdb3cb7eb9b6004f" +checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac" dependencies = [ "bytes", "futures-channel", diff --git a/server/Cargo.toml b/server/Cargo.toml index 2eae6d0..0a1b9ed 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -4,12 +4,12 @@ version = "0.0.0" edition = "2021" [dependencies] -axum = { version = "0.5.11", features = ["multipart"] } +axum = { version = "0.5.12", features = ["multipart"] } axum-auth = "0.2.0" base64 = "0.13.0" byte-unit = "4.0.14" futures = "0.3.21" -hyper = { version = "0.14.19", features = ["full"] } +hyper = { version = "0.14.20", features = ["full"] } log = "0.4.17" crypto-utils = { version = "0.4.0", features = ["jwt"] } serde = { version = "1.0.138", features = ["derive"] } diff --git a/types/Cargo.toml b/types/Cargo.toml index b69288f..e7689c2 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -12,7 +12,7 @@ thiserror = "1.0.31" uuid = "1.1.2" anyhow = "1.0.58" serde = { version = "1.0.138", features = ["derive"] } -axum = { version = "0.5.11", optional = true } +axum = { version = "0.5.12", optional = true } toml = { version = "0.5.9", optional = true } dirs = { version = "4.0.0", optional = true } crypto-utils = { version = "0.4.0", features = ["sha"], optional = true }