chore(deps): bump thiserror from 2.0.15 to 2.0.16

Bumps [thiserror](https://github.com/dtolnay/thiserror) from 2.0.15 to 2.0.16.
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](https://github.com/dtolnay/thiserror/compare/2.0.15...2.0.16)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-version: 2.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2025-08-20 22:12:22 +00:00 committed by GitHub
commit ba90f58a45
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 17 additions and 17 deletions

28
Cargo.lock generated
View file

@ -128,7 +128,7 @@ dependencies = [
"nom",
"num-traits",
"rusticata-macros",
"thiserror 2.0.15",
"thiserror 2.0.16",
"time",
]
@ -1093,7 +1093,7 @@ checksum = "469bdabdc9436358811cd8fa2d35b3a0fc60534aca57979b931b9f5f9551ce16"
dependencies = [
"anyhow",
"async-trait",
"thiserror 2.0.15",
"thiserror 2.0.16",
"tokio",
"tracing",
]
@ -1914,7 +1914,7 @@ dependencies = [
"rustc-hash 2.1.1",
"rustls",
"socket2 0.5.10",
"thiserror 2.0.15",
"thiserror 2.0.16",
"tokio",
"tracing",
"web-time",
@ -1937,7 +1937,7 @@ dependencies = [
"rustls-pki-types",
"rustls-platform-verifier 0.5.3",
"slab",
"thiserror 2.0.15",
"thiserror 2.0.16",
"tinyvec",
"tracing",
"web-time",
@ -2150,7 +2150,7 @@ dependencies = [
"rustls-acme",
"rustls-platform-verifier 0.6.1",
"rustls-post-quantum",
"thiserror 2.0.15",
"thiserror 2.0.16",
"tokio",
"tokio-stream",
"tokio-util",
@ -2170,7 +2170,7 @@ dependencies = [
"rustls-pemfile",
"rustls-post-quantum",
"rustls-webpki",
"thiserror 2.0.15",
"thiserror 2.0.16",
"tokio",
"tracing",
"x509-parser",
@ -2214,7 +2214,7 @@ dependencies = [
"s2n-quic-rustls",
"sha2",
"socket2 0.6.0",
"thiserror 2.0.15",
"thiserror 2.0.16",
"tokio",
"tokio-rustls",
"tokio-test",
@ -2310,7 +2310,7 @@ dependencies = [
"rcgen",
"serde",
"serde_json",
"thiserror 2.0.15",
"thiserror 2.0.16",
"webpki-roots 1.0.2",
"x509-parser",
]
@ -2861,11 +2861,11 @@ dependencies = [
[[package]]
name = "thiserror"
version = "2.0.15"
version = "2.0.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d76d3f064b981389ecb4b6b7f45a0bf9fdac1d5b9204c7bd6714fecc302850"
checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
dependencies = [
"thiserror-impl 2.0.15",
"thiserror-impl 2.0.16",
]
[[package]]
@ -2881,9 +2881,9 @@ dependencies = [
[[package]]
name = "thiserror-impl"
version = "2.0.15"
version = "2.0.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d29feb33e986b6ea906bd9c3559a856983f92371b3eaa5e83782a351623de0"
checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
dependencies = [
"proc-macro2",
"quote",
@ -3735,7 +3735,7 @@ dependencies = [
"oid-registry",
"ring",
"rusticata-macros",
"thiserror 2.0.15",
"thiserror 2.0.16",
"time",
]

View file

@ -16,7 +16,7 @@ post-quantum = ["rustls-post-quantum"]
[dependencies]
url = { version = "2.5.4" }
ahash = "0.8.12"
thiserror = "2.0.15"
thiserror = "2.0.16"
tracing = "0.1.41"
async-trait = "0.1.89"
base64 = "0.22.1"

View file

@ -19,7 +19,7 @@ http3 = []
ahash = { version = "0.8.12" }
tracing = { version = "0.1.41" }
derive_builder = { version = "0.20.2" }
thiserror = { version = "2.0.15" }
thiserror = { version = "2.0.16" }
hot_reload = { version = "0.2.0" }
async-trait = { version = "0.1.89" }
rustls = { version = "0.23.31", default-features = false, features = [

View file

@ -55,7 +55,7 @@ async-trait = "0.1.89"
# Error handling
anyhow = "1.0.99"
thiserror = "2.0.15"
thiserror = "2.0.16"
# http for both server and client
http = "1.3.1"