From af4401c7b581ab330e93fb380635532013cb24d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 11:46:02 +0000 Subject: [PATCH] build(deps): bump anyhow from 1.0.98 to 1.0.99 Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.98 to 1.0.99. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.98...1.0.99) --- updated-dependencies: - dependency-name: anyhow dependency-version: 1.0.99 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- tests/ensure_no_std/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 51413a76..0b9877a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -98,9 +98,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.98" +version = "1.0.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" +checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100" [[package]] name = "autocfg" diff --git a/Cargo.toml b/Cargo.toml index 89ed5132..e16ce697 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -89,7 +89,7 @@ opa-testutil = [] rand = ["dep:rand"] [dependencies] -anyhow = { version = "1.0.45", default-features = false } +anyhow = { version = "1.0.99", default-features = false } serde = {version = "1.0.150", default-features = false, features = ["derive", "rc"] } serde_json = { version = "1.0.89", default-features = false, features = ["alloc"] } lazy_static = { version = "1.4.0", default-features = false } @@ -115,7 +115,7 @@ msvc_spectre_libs = { version = "0.1", features = ["error"], optional = true } dashmap = { version = "6.1", default-features = false, optional = true } [dev-dependencies] -anyhow = "1.0.45" +anyhow = "1.0.99" cfg-if = "1.0.0" clap = { version = "4.5.45", features = ["derive"] } prettydiff = { version = "0.8.0", default-features = false } diff --git a/tests/ensure_no_std/Cargo.toml b/tests/ensure_no_std/Cargo.toml index bcf7745f..00f188b9 100644 --- a/tests/ensure_no_std/Cargo.toml +++ b/tests/ensure_no_std/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = { version = "1.0.83", default-features = false } +anyhow = { version = "1.0.99", default-features = false } regorus = { path = "../..", default-features = false, features = ["opa-no-std"] }