Update Rust crate thiserror to 2.0.14 (#123)
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-08-13 00:26:53 +00:00
parent 38c71e829e
commit b68d83f056
2 changed files with 5 additions and 5 deletions

8
Cargo.lock generated
View File

@@ -1616,18 +1616,18 @@ 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",
]
[[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",

View File

@@ -21,7 +21,7 @@ zip = { version = "4.3.0", optional = true }
mktemp = { version = "0.5.1", optional = true }
rand = { version = "0.9.2", optional = true }
port_scanner = { version = "0.1.5", optional = true }
thiserror = "2.0.12"
thiserror = "2.0.14"
[features]
embedded-server = ["zip", "mktemp", "rand", "port_scanner"]