From d43af79b7549b992641cbadf7a9d2425f853aa77 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 04:54:06 +0000 Subject: [PATCH] fix(deps): update rust crate thiserror to v2 --- Cargo.lock | 26 +++++++++++++------------- crates/it-lilo/Cargo.toml | 2 +- crates/it-memory-traits/Cargo.toml | 2 +- wasmer-it/Cargo.toml | 2 +- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0fe6dac..fbdab56 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16,7 +16,7 @@ checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.39", + "syn 2.0.87", ] [[package]] @@ -104,7 +104,7 @@ checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.39", + "syn 2.0.87", ] [[package]] @@ -234,18 +234,18 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "proc-macro2" -version = "1.0.69" +version = "1.0.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" +checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" dependencies = [ "unicode-ident", ] [[package]] name = "quote" -version = "1.0.33" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" dependencies = [ "proc-macro2", ] @@ -321,9 +321,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.39" +version = "2.0.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" +checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" dependencies = [ "proc-macro2", "quote", @@ -332,22 +332,22 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.38" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" +checksum = "15291287e9bff1bc6f9ff3409ed9af665bec7a5fc8ac079ea96be07bca0e2668" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.38" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" +checksum = "22efd00f33f93fa62848a7cab956c3d38c8d43095efda1decfc2b3a5dc0b8972" dependencies = [ "proc-macro2", "quote", - "syn 1.0.107", + "syn 2.0.87", ] [[package]] diff --git a/crates/it-lilo/Cargo.toml b/crates/it-lilo/Cargo.toml index 7b9625c..2fe7608 100644 --- a/crates/it-lilo/Cargo.toml +++ b/crates/it-lilo/Cargo.toml @@ -16,7 +16,7 @@ it-memory-traits = { path = "../it-memory-traits", version = "0.5.0" } anyhow = "1.0.75" paste = "1.0.11" -thiserror = "1.0.38" +thiserror = "2.0.0" log = "0.4.17" async-recursion = "1.0.5" futures = "0.3.29" diff --git a/crates/it-memory-traits/Cargo.toml b/crates/it-memory-traits/Cargo.toml index cdc7c9d..a1136fe 100644 --- a/crates/it-memory-traits/Cargo.toml +++ b/crates/it-memory-traits/Cargo.toml @@ -11,4 +11,4 @@ name = "it_memory_traits" path = "src/lib.rs" [dependencies] -thiserror = "1.0.38" +thiserror = "2.0.0" diff --git a/wasmer-it/Cargo.toml b/wasmer-it/Cargo.toml index cae3b26..7c22160 100644 --- a/wasmer-it/Cargo.toml +++ b/wasmer-it/Cargo.toml @@ -29,7 +29,7 @@ itertools = "0.10.5" futures = "0.3.29" paste = "1.0.14" -thiserror = "1.0.38" +thiserror = "2.0.0" semver = "1.0.16" [features]