Merge pull request #338 from junkurihara/dependabot/cargo/thiserror-2.0.14

chore(deps): bump thiserror from 2.0.12 to 2.0.14
This commit is contained in:
Jun Kurihara 2025-08-12 16:30:04 +09:00 committed by GitHub
commit e16e0845bd
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.12",
"thiserror 2.0.14",
"time",
]
@ -1093,7 +1093,7 @@ checksum = "469bdabdc9436358811cd8fa2d35b3a0fc60534aca57979b931b9f5f9551ce16"
dependencies = [
"anyhow",
"async-trait",
"thiserror 2.0.12",
"thiserror 2.0.14",
"tokio",
"tracing",
]
@ -1912,7 +1912,7 @@ dependencies = [
"rustc-hash 2.1.1",
"rustls",
"socket2 0.5.10",
"thiserror 2.0.12",
"thiserror 2.0.14",
"tokio",
"tracing",
"web-time",
@ -1935,7 +1935,7 @@ dependencies = [
"rustls-pki-types",
"rustls-platform-verifier 0.5.3",
"slab",
"thiserror 2.0.12",
"thiserror 2.0.14",
"tinyvec",
"tracing",
"web-time",
@ -2148,7 +2148,7 @@ dependencies = [
"rustls-acme",
"rustls-platform-verifier 0.6.1",
"rustls-post-quantum",
"thiserror 2.0.12",
"thiserror 2.0.14",
"tokio",
"tokio-stream",
"tokio-util",
@ -2168,7 +2168,7 @@ dependencies = [
"rustls-pemfile",
"rustls-post-quantum",
"rustls-webpki",
"thiserror 2.0.12",
"thiserror 2.0.14",
"tokio",
"tracing",
"x509-parser",
@ -2212,7 +2212,7 @@ dependencies = [
"s2n-quic-rustls",
"sha2",
"socket2 0.6.0",
"thiserror 2.0.12",
"thiserror 2.0.14",
"tokio",
"tokio-rustls",
"tokio-test",
@ -2308,7 +2308,7 @@ dependencies = [
"rcgen",
"serde",
"serde_json",
"thiserror 2.0.12",
"thiserror 2.0.14",
"webpki-roots 1.0.2",
"x509-parser",
]
@ -2859,11 +2859,11 @@ dependencies = [
[[package]]
name = "thiserror"
version = "2.0.12"
version = "2.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
checksum = "0b0949c3a6c842cbde3f1686d6eea5a010516deb7085f79db747562d4102f41e"
dependencies = [
"thiserror-impl 2.0.12",
"thiserror-impl 2.0.14",
]
[[package]]
@ -2879,9 +2879,9 @@ dependencies = [
[[package]]
name = "thiserror-impl"
version = "2.0.12"
version = "2.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
checksum = "cc5b44b4ab9c2fdd0e0512e6bece8388e214c0749f5862b114cc5b7a25daf227"
dependencies = [
"proc-macro2",
"quote",
@ -3733,7 +3733,7 @@ dependencies = [
"oid-registry",
"ring",
"rusticata-macros",
"thiserror 2.0.12",
"thiserror 2.0.14",
"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.12"
thiserror = "2.0.14"
tracing = "0.1.41"
async-trait = "0.1.88"
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.12" }
thiserror = { version = "2.0.14" }
hot_reload = { version = "0.2.0" }
async-trait = { version = "0.1.88" }
rustls = { version = "0.23.31", default-features = false, features = [

View file

@ -55,7 +55,7 @@ async-trait = "0.1.88"
# Error handling
anyhow = "1.0.98"
thiserror = "2.0.12"
thiserror = "2.0.14"
# http for both server and client
http = "1.3.1"