Update Rust crate anyhow to 1.0.76

This commit is contained in:
Kasper Juul Hermansen 2023-12-21 01:07:08 +00:00
parent 695ac82f74
commit d1fef21bc2
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View File

@ -28,9 +28,9 @@ dependencies = [
[[package]] [[package]]
name = "anyhow" name = "anyhow"
version = "1.0.75" version = "1.0.76"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" checksum = "59d2a3357dde987206219e78ecfbbb6e8dad06cbb65292758d3270e6254f7355"
[[package]] [[package]]
name = "async-trait" name = "async-trait"

View File

@ -9,7 +9,7 @@ edition = "2021"
tokio = { version = "1.35", features = ["full"] } tokio = { version = "1.35", features = ["full"] }
tracing = "0.1" tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = {version = "1.0.75"} anyhow = {version = "1.0.76"}
prae_api = { path = "../../lib/prae_api" } prae_api = { path = "../../lib/prae_api" }
prae_core = { path = "../../lib/prae_core" } prae_core = { path = "../../lib/prae_core" }

View File

@ -12,4 +12,4 @@ serde_json = "1.0.108"
tokio = { version = "1.35", features = ["full"] } tokio = { version = "1.35", features = ["full"] }
tracing = "0.1" tracing = "0.1"
tracing-subscriber = { version = "0.3" } tracing-subscriber = { version = "0.3" }
anyhow = { version = "1.0.75" } anyhow = { version = "1.0.76" }