fix(deps): update rust crate axum to 0.5.8

This commit is contained in:
renovate[bot] 2022-06-18 11:28:24 +00:00 committed by GitHub
parent f9b46c34db
commit 9736c9a9c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

8
Cargo.lock generated
View File

@ -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",

View File

@ -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"

View File

@ -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 }