From 599def2ba54fd2059a75a1b132b2a473091d1b32 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Feb 2026 18:27:24 +0000 Subject: [PATCH] chore(deps): Bump thiserror in /services/webmention-rate-limiter Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.69 to 2.0.18. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.69...2.0.18) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.18 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- services/webmention-rate-limiter/Cargo.lock | 30 +++++++++++++++++---- services/webmention-rate-limiter/Cargo.toml | 2 +- 2 files changed, 26 insertions(+), 6 deletions(-) diff --git a/services/webmention-rate-limiter/Cargo.lock b/services/webmention-rate-limiter/Cargo.lock index 60dc3d4..ec9aaef 100644 --- a/services/webmention-rate-limiter/Cargo.lock +++ b/services/webmention-rate-limiter/Cargo.lock @@ -647,7 +647,7 @@ dependencies = [ "memchr", "parking_lot", "protobuf 2.28.0", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -664,7 +664,7 @@ checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4" dependencies = [ "once_cell", "protobuf-support", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -673,7 +673,7 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6" dependencies = [ - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -866,7 +866,16 @@ version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl", + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" +dependencies = [ + "thiserror-impl 2.0.18", ] [[package]] @@ -880,6 +889,17 @@ dependencies = [ "syn", ] +[[package]] +name = "thiserror-impl" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "thread_local" version = "1.1.9" @@ -1171,7 +1191,7 @@ dependencies = [ "protobuf 3.7.2", "serde", "serde_json", - "thiserror", + "thiserror 2.0.18", "tokio", "tokio-test", "tower 0.4.13", diff --git a/services/webmention-rate-limiter/Cargo.toml b/services/webmention-rate-limiter/Cargo.toml index ca97751..97b7163 100644 --- a/services/webmention-rate-limiter/Cargo.toml +++ b/services/webmention-rate-limiter/Cargo.toml @@ -38,7 +38,7 @@ prometheus = "0.13" protobuf = "3.7" # Error handling -thiserror = "1.0" +thiserror = "2.0" anyhow = "1.0" [dev-dependencies]