From 23a32f45b981c924c513f5c43b3ea38c66b583c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 08:08:07 +0000 Subject: [PATCH] build(deps): bump thiserror from 2.0.8 to 2.0.9 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 2.0.8 to 2.0.9. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/2.0.8...2.0.9) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++-------- crates/rsjudge-amqp/Cargo.toml | 2 +- crates/rsjudge-runner/Cargo.toml | 2 +- crates/rsjudge-utils/Cargo.toml | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4cad3e2..7ab28a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1493,7 +1493,7 @@ dependencies = [ "amqprs", "rsjudge-traits", "serde", - "thiserror 2.0.8", + "thiserror 2.0.9", "tokio", ] @@ -1555,7 +1555,7 @@ dependencies = [ "rsjudge-traits", "rsjudge-utils", "rustversion", - "thiserror 2.0.8", + "thiserror 2.0.9", "tokio", "tokio-util", "uzers", @@ -1580,7 +1580,7 @@ dependencies = [ "anyhow", "log", "shell-words", - "thiserror 2.0.8", + "thiserror 2.0.9", "tokio", ] @@ -1856,11 +1856,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.8" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08f5383f3e0071702bf93ab5ee99b52d26936be9dedd9413067cbdcddcb6141a" +checksum = "f072643fd0190df67a8bab670c20ef5d8737177d6ac6b2e9a236cb096206b2cc" dependencies = [ - "thiserror-impl 2.0.8", + "thiserror-impl 2.0.9", ] [[package]] @@ -1876,9 +1876,9 @@ dependencies = [ [[package]] name = "thiserror-impl" -version = "2.0.8" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2f357fcec90b3caef6623a099691be676d033b40a058ac95d2a6ade6fa0c943" +checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4" dependencies = [ "proc-macro2", "quote", diff --git a/crates/rsjudge-amqp/Cargo.toml b/crates/rsjudge-amqp/Cargo.toml index 69895ca..66ce6d0 100644 --- a/crates/rsjudge-amqp/Cargo.toml +++ b/crates/rsjudge-amqp/Cargo.toml @@ -11,7 +11,7 @@ rust-version.workspace = true [dependencies] amqprs = { version = "2.1.0", features = ["urispec"] } -thiserror = "2.0.8" +thiserror = "2.0.9" tokio = "1.42.0" rsjudge-traits.workspace = true diff --git a/crates/rsjudge-runner/Cargo.toml b/crates/rsjudge-runner/Cargo.toml index 2d8bdce..eebb98e 100644 --- a/crates/rsjudge-runner/Cargo.toml +++ b/crates/rsjudge-runner/Cargo.toml @@ -19,7 +19,7 @@ log.workspace = true nix = { version = "0.29.0", features = ["user", "resource", "process"] } rsjudge-traits.workspace = true rsjudge-utils.workspace = true -thiserror = "2.0.8" +thiserror = "2.0.9" tokio = { workspace = true, features = ["process", "sync", "time", "signal"] } tokio-util = "0.7.13" uzers = "0.12.1" diff --git a/crates/rsjudge-utils/Cargo.toml b/crates/rsjudge-utils/Cargo.toml index a33da2f..a13bc76 100644 --- a/crates/rsjudge-utils/Cargo.toml +++ b/crates/rsjudge-utils/Cargo.toml @@ -12,7 +12,7 @@ rust-version.workspace = true [dependencies] log.workspace = true shell-words = "1.1.0" -thiserror = "2.0.8" +thiserror = "2.0.9" tokio = { workspace = true, features = ["process", "macros", "rt-multi-thread"] } [dev-dependencies]