From aac2aff29e413bfef4dceb2ff858ee9900add2a8 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Tue, 19 Nov 2024 16:47:53 +0100 Subject: [PATCH] Bump thiserror from 1.0.63 to 2.0.3 --- Cargo.lock | 26 +++++++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ea45bb6..78a2b59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -694,7 +694,7 @@ checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" dependencies = [ "getrandom", "libredox", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -924,7 +924,16 @@ version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" 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]] @@ -938,6 +947,17 @@ dependencies = [ "syn", ] +[[package]] +name = "thiserror-impl" +version = "2.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "time" version = "0.3.36" @@ -1083,7 +1103,7 @@ dependencies = [ "nix", "prettytable-rs", "sysinfo", - "thiserror", + "thiserror 2.0.3", "uu_pgrep", "uucore", ] diff --git a/Cargo.toml b/Cargo.toml index f46b852..65f8ccd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,7 @@ regex = "1.10.4" sysinfo = "0.32.0" tempfile = "3.10.1" textwrap = { version = "0.16.1", features = ["terminal_size"] } -thiserror = "1.0.63" +thiserror = "2.0.3" uucore = "0.0.28" walkdir = "2.5.0" windows = { version = "0.58.0" }