diff --git a/Cargo.lock b/Cargo.lock index b7ae7df..8e09cb3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -313,7 +313,7 @@ dependencies = [ "serde", "serde_json", "tar", - "thiserror", + "thiserror 1.0.68", "url", "walkdir", "xz2", @@ -333,7 +333,7 @@ dependencies = [ "miette", "serde", "serde_json", - "thiserror", + "thiserror 1.0.68", "tracing", "tracing-subscriber", ] @@ -345,7 +345,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4de46920588aef95658797996130bacd542436aee090084646521260a74bda7d" dependencies = [ "miette", - "thiserror", + "thiserror 1.0.68", "tracing", ] @@ -357,7 +357,7 @@ checksum = "d888fac0b73e64cbdf36a743fc5a25af5ae955c357535cb420b389bf1e1a6c54" dependencies = [ "miette", "semver", - "thiserror", + "thiserror 1.0.68", ] [[package]] @@ -376,7 +376,7 @@ dependencies = [ "serde", "serial_test", "tempfile", - "thiserror", + "thiserror 2.0.0", "tokio", "url", ] @@ -1010,7 +1010,7 @@ dependencies = [ "schemars", "serde", "serde_json", - "thiserror", + "thiserror 1.0.68", "tokio", "tracing", "url", @@ -1497,7 +1497,7 @@ dependencies = [ "supports-unicode", "terminal_size", "textwrap", - "thiserror", + "thiserror 1.0.68", "unicode-width", ] @@ -1801,7 +1801,7 @@ dependencies = [ "quinn-udp", "rustc-hash", "rustls", - "thiserror", + "thiserror 1.0.68", "tokio", "tracing", ] @@ -1818,7 +1818,7 @@ dependencies = [ "rustc-hash", "rustls", "slab", - "thiserror", + "thiserror 1.0.68", "tinyvec", "tracing", ] @@ -1892,7 +1892,7 @@ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ "getrandom", "libredox", - "thiserror", + "thiserror 1.0.68", ] [[package]] @@ -2489,7 +2489,16 @@ version = "1.0.68" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "02dd99dc800bbb97186339685293e1cc5d9df1f8fae2d0aecd9ff1c77efea892" dependencies = [ - "thiserror-impl", + "thiserror-impl 1.0.68", +] + +[[package]] +name = "thiserror" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15291287e9bff1bc6f9ff3409ed9af665bec7a5fc8ac079ea96be07bca0e2668" +dependencies = [ + "thiserror-impl 2.0.0", ] [[package]] @@ -2503,6 +2512,17 @@ dependencies = [ "syn 2.0.87", ] +[[package]] +name = "thiserror-impl" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22efd00f33f93fa62848a7cab956c3d38c8d43095efda1decfc2b3a5dc0b8972" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.87", +] + [[package]] name = "thread_local" version = "1.1.7" diff --git a/axoupdater/Cargo.toml b/axoupdater/Cargo.toml index 2f2239f..5572e71 100644 --- a/axoupdater/Cargo.toml +++ b/axoupdater/Cargo.toml @@ -35,7 +35,7 @@ tokio = { version = "1.36.0", features = ["full"], optional = true } # errors miette = "7.2.0" -thiserror = "1.0.58" +thiserror = "2.0.0" [target.'cfg(windows)'.dependencies] self-replace = "1.5.0"