Update Rust crate thiserror to 2.0.17
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
2025-09-29 00:35:50 +00:00
parent 2aa5318288
commit c9ba4ba870
2 changed files with 12 additions and 12 deletions

22
Cargo.lock generated
View File

@@ -1069,7 +1069,7 @@ dependencies = [
"pest_derive", "pest_derive",
"regex", "regex",
"serde_json", "serde_json",
"thiserror 2.0.16", "thiserror 2.0.17",
] ]
[[package]] [[package]]
@@ -1135,7 +1135,7 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"serde_yaml", "serde_yaml",
"thiserror 2.0.16", "thiserror 2.0.17",
"tokio", "tokio",
"tokio-util", "tokio-util",
"tower", "tower",
@@ -1159,7 +1159,7 @@ dependencies = [
"serde", "serde",
"serde-value", "serde-value",
"serde_json", "serde_json",
"thiserror 2.0.16", "thiserror 2.0.17",
] ]
[[package]] [[package]]
@@ -1197,7 +1197,7 @@ dependencies = [
"pin-project", "pin-project",
"serde", "serde",
"serde_json", "serde_json",
"thiserror 2.0.16", "thiserror 2.0.17",
"tokio", "tokio",
"tokio-util", "tokio-util",
"tracing", "tracing",
@@ -1265,7 +1265,7 @@ dependencies = [
"schemars", "schemars",
"serde", "serde",
"serde_json", "serde_json",
"thiserror 2.0.16", "thiserror 2.0.17",
"tokio", "tokio",
] ]
@@ -1450,7 +1450,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "198db74531d58c70a361c42201efde7e2591e976d518caf7662a47dc5720e7b6" checksum = "198db74531d58c70a361c42201efde7e2591e976d518caf7662a47dc5720e7b6"
dependencies = [ dependencies = [
"memchr", "memchr",
"thiserror 2.0.16", "thiserror 2.0.17",
"ucd-trie", "ucd-trie",
] ]
@@ -2121,11 +2121,11 @@ dependencies = [
[[package]] [[package]]
name = "thiserror" name = "thiserror"
version = "2.0.16" version = "2.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0" checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
dependencies = [ dependencies = [
"thiserror-impl 2.0.16", "thiserror-impl 2.0.17",
] ]
[[package]] [[package]]
@@ -2141,9 +2141,9 @@ dependencies = [
[[package]] [[package]]
name = "thiserror-impl" name = "thiserror-impl"
version = "2.0.16" version = "2.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960" checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View File

@@ -16,7 +16,7 @@ tokio = { version = "1.47.1", features = ["full"] }
kube = { version = "2.0.1", features = ["runtime", "derive"] } kube = { version = "2.0.1", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.26.0", features = ["v1_31"] } k8s-openapi = { version = "0.26.0", features = ["v1_31"] }
futures = "0.3.31" futures = "0.3.31"
thiserror = "2.0.16" thiserror = "2.0.17"
rand = "0.9.2" rand = "0.9.2"
mktemp = "0.5.1" mktemp = "0.5.1"
reqwest = "0.12.23" reqwest = "0.12.23"