From 0af9a68a7aa4209cb9e4b8b7e0041002e6872737 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 17:09:30 +0800 Subject: [PATCH] build(deps): bump anyhow from 1.0.86 to 1.0.87 (#114) Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.86 to 1.0.87.
Release notes

Sourced from anyhow's releases.

1.0.87

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=anyhow&package-manager=cargo&previous-version=1.0.86&new-version=1.0.87)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- crates/rsjudge-grpc/Cargo.toml | 4 ++-- crates/rsjudge-runner/Cargo.toml | 2 +- crates/rsjudge-utils/Cargo.toml | 2 +- xtask/Cargo.toml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5a175a9..93a4869 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -118,9 +118,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.86" +version = "1.0.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" +checksum = "10f00e1f6e58a40e807377c75c6a7f97bf9044fab57816f2414e6f5f4499d7b8" [[package]] name = "async-stream" diff --git a/Cargo.toml b/Cargo.toml index 47c12e1..beebd25 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -159,7 +159,7 @@ rsjudge-amqp = { version = "0.1.0", path = "crates/rsjudge-amqp", optional = tru rsjudge-grpc = { version = "0.1.0", path = "crates/rsjudge-grpc", optional = true } rsjudge-rest = { version = "0.1.0", path = "crates/rsjudge-rest", optional = true } -anyhow = "1.0.86" +anyhow = "1.0.87" clap = { version = "4.5.17", features = ["derive"] } env_logger = "0.11.5" log.workspace = true diff --git a/crates/rsjudge-grpc/Cargo.toml b/crates/rsjudge-grpc/Cargo.toml index 6345d97..a3eb155 100644 --- a/crates/rsjudge-grpc/Cargo.toml +++ b/crates/rsjudge-grpc/Cargo.toml @@ -14,7 +14,7 @@ description = "gRPC server for rsjudge" ignored = ["prost", "prost-types"] [dependencies] -anyhow = "1.0.86" +anyhow = "1.0.87" futures = "0.3.30" log.workspace = true prost = "0.13.2" @@ -29,7 +29,7 @@ rsjudge-traits.workspace = true serde = { workspace = true, optional = true } [build-dependencies] -anyhow = "1.0.86" +anyhow = "1.0.87" rsjudge-utils.workspace = true tokio = { workspace = true, features = ["macros", "rt-multi-thread", "process"] } tonic-build = "0.12.2" diff --git a/crates/rsjudge-runner/Cargo.toml b/crates/rsjudge-runner/Cargo.toml index 151b0ac..8970247 100644 --- a/crates/rsjudge-runner/Cargo.toml +++ b/crates/rsjudge-runner/Cargo.toml @@ -25,7 +25,7 @@ tokio-util = "0.7.12" uzers = "0.12.1" [dev-dependencies] -anyhow = "1.0.86" +anyhow = "1.0.87" [build-dependencies] rustversion = "1.0.17" diff --git a/crates/rsjudge-utils/Cargo.toml b/crates/rsjudge-utils/Cargo.toml index 6b5215a..d97b67f 100644 --- a/crates/rsjudge-utils/Cargo.toml +++ b/crates/rsjudge-utils/Cargo.toml @@ -16,4 +16,4 @@ thiserror = "1.0.63" tokio = { workspace = true, features = ["process", "macros", "rt-multi-thread"] } [dev-dependencies] -anyhow = "1.0.86" +anyhow = "1.0.87" diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 3a841c6..f645dc5 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -11,7 +11,7 @@ rust-version.workspace = true description = "A task runner for cargo workspaces" [dependencies] -anyhow = "1.0.86" +anyhow = "1.0.87" clap = { version = "4.5.17", features = ["derive"] } sh = "0.2.1"