From 29c27edc2f561ce8fb269ae967c585acee813782 Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Fri, 17 May 2024 18:19:09 +0000 Subject: [PATCH] fix(deps): update rust crate anyhow to 1.0.84 --- Cargo.lock | 4 ++-- crates/cibus_backend/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 56a74a6..1f9bafa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -72,9 +72,9 @@ checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" [[package]] name = "anyhow" -version = "1.0.83" +version = "1.0.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3" +checksum = "18b8795de6d09abb2b178fa5a9e3bb10da935750f33449a132b328b9391b2c6a" [[package]] name = "ascii_utils" diff --git a/crates/cibus_backend/Cargo.toml b/crates/cibus_backend/Cargo.toml index bfbf945..135e7e8 100644 --- a/crates/cibus_backend/Cargo.toml +++ b/crates/cibus_backend/Cargo.toml @@ -11,7 +11,7 @@ axum = "0.7.5" tokio = {version="1.37.0", features=["full"]} uuid = {version="1.8.0", features=["v4", "fast-rng"]} sqlx = { version = "0.7", features = [ "runtime-tokio-rustls", "postgres", "migrate"] } -anyhow = "1.0.83" +anyhow = "1.0.84" dotenv = "0.15.0" tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }