From a0a885b1773483b6f06d2d76802e9ea3a2bcb188 Mon Sep 17 00:00:00 2001 From: Lachlan Deakin Date: Mon, 11 Nov 2024 06:51:04 +1100 Subject: [PATCH] Bump `thiserror` to 2.0 --- zarrs/Cargo.toml | 2 +- zarrs_filesystem/Cargo.toml | 2 +- zarrs_http/Cargo.toml | 2 +- zarrs_metadata/Cargo.toml | 2 +- zarrs_storage/Cargo.toml | 2 +- zarrs_zip/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/zarrs/Cargo.toml b/zarrs/Cargo.toml index 7d180c8f..18b36be5 100644 --- a/zarrs/Cargo.toml +++ b/zarrs/Cargo.toml @@ -62,7 +62,7 @@ rayon = "1.10.0" rayon_iter_concurrent_limit = "0.2.0" serde = { version = "1.0.185", features = ["derive"] } serde_json = { version = "1.0.71", features = ["float_roundtrip", "preserve_order"] } -thiserror = "1.0.61" +thiserror = "2.0.0" thread_local = "1.1.8" unsafe_cell_slice = "0.2.0" zarrs_filesystem = { workspace = true, optional = true } diff --git a/zarrs_filesystem/Cargo.toml b/zarrs_filesystem/Cargo.toml index 31066b64..2461beae 100644 --- a/zarrs_filesystem/Cargo.toml +++ b/zarrs_filesystem/Cargo.toml @@ -22,7 +22,7 @@ libc = "0.2.158" page_size = "0.6.0" parking_lot = "0.12.0" pathdiff = "0.2.0" -thiserror = "1.0.61" +thiserror = "2.0.0" walkdir = "2.3.2" zarrs_storage = { workspace = true } diff --git a/zarrs_http/Cargo.toml b/zarrs_http/Cargo.toml index dbbf1b95..93105747 100644 --- a/zarrs_http/Cargo.toml +++ b/zarrs_http/Cargo.toml @@ -16,7 +16,7 @@ workspace = true [dependencies] itertools = "0.13.0" -thiserror = "1.0.61" +thiserror = "2.0.0" reqwest = { version = ">=0.11.8,<0.13", features = ["blocking"] } url = { version = "2.2.0" } zarrs_storage = { workspace = true } diff --git a/zarrs_metadata/Cargo.toml b/zarrs_metadata/Cargo.toml index 1c160971..12f1a957 100644 --- a/zarrs_metadata/Cargo.toml +++ b/zarrs_metadata/Cargo.toml @@ -22,4 +22,4 @@ num = { version = "0.4.1" } serde = { version = "1.0.185", features = ["derive"] } serde_json = { version = "1.0.71", features = ["float_roundtrip", "preserve_order"] } serde_repr = "0.1.19" -thiserror = "1.0.61" +thiserror = "2.0.0" diff --git a/zarrs_storage/Cargo.toml b/zarrs_storage/Cargo.toml index abf99317..a396ee1d 100644 --- a/zarrs_storage/Cargo.toml +++ b/zarrs_storage/Cargo.toml @@ -28,7 +28,7 @@ derive_more = { version = "1.0.0", features = ["deref", "display", "from"] } futures = { version = "0.3.29", optional = true } itertools = "0.13.0" parking_lot = "0.12.0" -thiserror = "1.0.61" +thiserror = "2.0.0" unsafe_cell_slice = "0.2.0" [dev-dependencies] diff --git a/zarrs_zip/Cargo.toml b/zarrs_zip/Cargo.toml index f52dae3e..16b9685b 100644 --- a/zarrs_zip/Cargo.toml +++ b/zarrs_zip/Cargo.toml @@ -17,7 +17,7 @@ workspace = true [dependencies] derive_more = { version = "1.0.0", features = ["from"] } itertools = "0.13.0" -thiserror = "1.0.61" +thiserror = "2.0.0" zarrs_storage = { workspace = true } zip = { workspace = true }