diff --git a/CHANGELOG.md b/CHANGELOG.md index 4410729a4..e39614d80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Auditor Docker container: Switch from fixed to latest Rust version ([@dirksammel](https://github.com/dirksammel)) - Dependencies: Switch from pyo3-asyncio 0.20.0 to pyo3-async-runtimes 0.22.0 ([@dirksammel](https://github.com/dirksammel)) +- Dependencies: Update anyhow from 1.0.94 to 1.0.95 ([@raghuvar-vijay](https://github.com/raghuvar-vijay)) - Dependencies: Update codecov/codecov-action from 3 to 5 ([@dirksammel](https://github.com/dirksammel)) - Dependencies: Update crate-ci/typos from 1.26.8 to 1.28.4 ([@dirksammel](https://github.com/dirksammel)) - Dependencies: Update cryptography from 43.0.3 to 44.0.0 ([@dirksammel](https://github.com/dirksammel)) diff --git a/Cargo.lock b/Cargo.lock index 254b5d2aa..d80ce8840 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -326,9 +326,9 @@ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" [[package]] name = "anyhow" -version = "1.0.94" +version = "1.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7" +checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" [[package]] name = "assert-json-diff" diff --git a/Cargo.toml b/Cargo.toml index d82b80cc1..e13b586a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ actix-web = "4.8.0" actix-tls = "3.4.0" actix-web-opentelemetry = { version = "0.17", features = ["metrics", "metrics-prometheus"] } -anyhow = "1.0.86" +anyhow = "1.0.95" auditor = { path = "./auditor", version = "0.6.3", default-features = false } auditor-client = { path = "./auditor-client", version = "0.6.3" } bincode = "1.3.3"