fix(deps): update rust crate anyhow to 1.0.58

This commit is contained in:
renovate[bot] 2022-06-19 00:45:11 +00:00 committed by GitHub
parent d1bd12ad33
commit fb65dbdf0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

4
Cargo.lock generated
View File

@ -45,9 +45,9 @@ dependencies = [
[[package]]
name = "anyhow"
version = "1.0.57"
version = "1.0.58"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc"
checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704"
[[package]]
name = "async-compression"

View File

@ -14,7 +14,7 @@ name = "homedisk"
path = "./src/main.rs"
[dependencies]
anyhow = "1.0.57"
anyhow = "1.0.58"
better-panic = "0.3.0"
log = { version = "0.4.17", features = ["max_level_debug", "release_max_level_warn"] }
simplelog = "0.12.0"

View File

@ -13,5 +13,5 @@ uuid = { version = "1.1.2", features = ["v5"] }
homedisk-types = { path = "../types", features = ["database"] }
[dev-dependencies]
anyhow = "1.0.57"
anyhow = "1.0.58"
tokio = { version = "1.19.2", features = ["rt-multi-thread", "macros"] }

View File

@ -10,7 +10,7 @@ database = ["crypto-utils", "hex", "sqlx"]
[dependencies]
thiserror = "1.0.31"
uuid = "1.1.2"
anyhow = "1.0.57"
anyhow = "1.0.58"
serde = { version = "1.0.137", features = ["derive"] }
zeroize = { version = "1.5.5", features = ["derive"] }
axum = { version = "0.5.8", optional = true }