From a50ed7f97b761d72b0bfdf8b433c7de658dea554 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 10:52:38 +0000 Subject: [PATCH] build(deps): Bump thiserror from 1.0.67 to 2.0.3 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.67 to 2.0.3. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.67...2.0.3) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 34 +++++++++++++++++++++++++++------- Cargo.toml | 2 +- 2 files changed, 28 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0863f559..135b6c28 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1341,18 +1341,38 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "thiserror" -version = "1.0.67" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b3c6efbfc763e64eb85c11c25320f0737cb7364c4b6336db90aa9ebe27a0bbd" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl", + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" +dependencies = [ + "thiserror-impl 2.0.3", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.87", ] [[package]] name = "thiserror-impl" -version = "1.0.67" +version = "2.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b607164372e89797d78b8e23a6d67d5d1038c1c65efd52e1389ef8b77caba2a6" +checksum = "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" dependencies = [ "proc-macro2", "quote", @@ -1462,7 +1482,7 @@ dependencies = [ "rftrace-frontend", "shell-words", "sysinfo", - "thiserror", + "thiserror 2.0.3", "time", "tun-tap", "uhyve-interface", @@ -1784,5 +1804,5 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4adf07683b9f5802ea409e9c1213f6a6b3bc332230f2b81321faec4680f135d1" dependencies = [ "libc", - "thiserror", + "thiserror 1.0.69", ] diff --git a/Cargo.toml b/Cargo.toml index 589f9979..9c365c87 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ hermit-entry = { version = "0.10", features = ["loader"] } libc = "0.2" log = "0.4" mac_address = "1.1" -thiserror = "1.0" +thiserror = "2.0" time = "0.3" tun-tap = { version = "0.1.3", default-features = false } uhyve-interface = { version = "0.1.1", path = "uhyve-interface", features = ["std"] }