From 6483fa10a12a7855e37c402f15a920c25cc856cf Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 12:54:08 +0800 Subject: [PATCH] chore(deps): update rust crate thiserror to 1.0.55 (#44) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 83bd7b91..e7e15e29 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -570,18 +570,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.53" +version = "1.0.55" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2cd5904763bad08ad5513ddbb12cf2ae273ca53fa9f68e843e236ec6dfccc09" +checksum = "6e3de26b0965292219b4287ff031fcba86837900fe9cd2b34ea8ad893c0953d2" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.53" +version = "1.0.55" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3dcf4a824cce0aeacd6f38ae6f24234c8e80d68632338ebaa1443b5df9e29e19" +checksum = "268026685b2be38d7103e9e507c938a1fcb3d7e6eb15e87870b617bf37b6d581" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index d610d0ff..98631be9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -78,7 +78,7 @@ rustc-hash = { version = "1.1.0", default-features = false, features = ["std"] } indexmap = { version = "2.1.0", features = ["serde"] } # serde for Deserialize from package.json dunce = "1.0.4" # Normalize Windows paths to the most compatible format, avoiding UNC where possible once_cell = "1.19.0" # Use `std::sync::OnceLock::get_or_try_init` when it is stable. -thiserror = { version = "1.0.53" } +thiserror = { version = "1.0.55" } codspeed-criterion-compat = { version = "2.3.3", default-features = false, optional = true }