diff --git a/Cargo.lock b/Cargo.lock index 173cfd8..b23ab5e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/core/Cargo.toml b/core/Cargo.toml index d26c60e..c9847c3 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -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" diff --git a/database/Cargo.toml b/database/Cargo.toml index 9bfcdf5..c1ee8ef 100644 --- a/database/Cargo.toml +++ b/database/Cargo.toml @@ -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"] } diff --git a/types/Cargo.toml b/types/Cargo.toml index 3b12d7b..2c33910 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -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 }