From 0d2bbd4ba1c5d41777a040fd457176477a90ba2f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 07:19:26 +0000 Subject: [PATCH] build(deps): bump thiserror from 1.0.63 to 1.0.64 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.63 to 1.0.64. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.63...1.0.64) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- crates/rsjudge-amqp/Cargo.toml | 2 +- crates/rsjudge-runner/Cargo.toml | 2 +- crates/rsjudge-utils/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ded45f8..c89c95e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1849,18 +1849,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.63" +version = "1.0.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" +checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.63" +version = "1.0.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" +checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" dependencies = [ "proc-macro2", "quote", diff --git a/crates/rsjudge-amqp/Cargo.toml b/crates/rsjudge-amqp/Cargo.toml index c329a42..00d953b 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.0.0", features = ["urispec"] } -thiserror = "1.0.63" +thiserror = "1.0.64" tokio = "1.40.0" rsjudge-traits.workspace = true diff --git a/crates/rsjudge-runner/Cargo.toml b/crates/rsjudge-runner/Cargo.toml index db49835..0013d3d 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 = "1.0.63" +thiserror = "1.0.64" tokio = { workspace = true, features = ["process", "sync", "time", "signal"] } tokio-util = "0.7.12" uzers = "0.12.1" diff --git a/crates/rsjudge-utils/Cargo.toml b/crates/rsjudge-utils/Cargo.toml index 2cab0da..5b96b27 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 = "1.0.63" +thiserror = "1.0.64" tokio = { workspace = true, features = ["process", "macros", "rt-multi-thread"] } [dev-dependencies]