From faac05d5e32f86452c3fe5e2491b16573ff51b0b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 15:31:42 +0000 Subject: [PATCH] Update thiserror requirement from 1.0 to 2.0 Updates the requirements on [thiserror](https://github.com/dtolnay/thiserror) to permit the latest version. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.0...2.0.0) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/addon/Cargo.toml | 2 +- crates/form/Cargo.toml | 2 +- crates/proto/Cargo.toml | 2 +- crates/proto_core/Cargo.toml | 2 +- crates/world/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/addon/Cargo.toml b/crates/addon/Cargo.toml index b1e0bbe8..31eafa96 100644 --- a/crates/addon/Cargo.toml +++ b/crates/addon/Cargo.toml @@ -9,7 +9,7 @@ bedrockrs_core = { path = "../core" } uuid = { version = "1.8", features = ["serde"] } semver = { version = "1.0", features = ["serde"] } image = "0.25" -thiserror = "1.0" +thiserror = "2.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" json_comments = "0.2" diff --git a/crates/form/Cargo.toml b/crates/form/Cargo.toml index 7cdbf3e8..6389b5c2 100644 --- a/crates/form/Cargo.toml +++ b/crates/form/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -thiserror = "1.0" +thiserror = "2.0" serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } diff --git a/crates/proto/Cargo.toml b/crates/proto/Cargo.toml index 1e608777..32feaf15 100644 --- a/crates/proto/Cargo.toml +++ b/crates/proto/Cargo.toml @@ -14,7 +14,7 @@ nbtx = { git = "https://github.com/bedrock-crustaceans/nbtx" } xuid = "1.0.0" log = "0.4" -thiserror = "1.0" +thiserror = "2.0" dyn-clone = "1.0" jsonwebtoken = "9.3" diff --git a/crates/proto_core/Cargo.toml b/crates/proto_core/Cargo.toml index 9bd16cb0..93467e3c 100644 --- a/crates/proto_core/Cargo.toml +++ b/crates/proto_core/Cargo.toml @@ -10,7 +10,7 @@ bedrockrs_proto_macros = { path = "../proto_macros" } nbtx = { git = "https://github.com/bedrock-crustaceans/nbtx" } xuid = "1.0.0" -thiserror = "1.0" +thiserror = "2.0" serde_json = "1.0" jsonwebtoken = "9.3" base64 = "0.22" diff --git a/crates/world/Cargo.toml b/crates/world/Cargo.toml index fbdb726b..4eda7816 100644 --- a/crates/world/Cargo.toml +++ b/crates/world/Cargo.toml @@ -11,6 +11,6 @@ bedrockrs_paletted_storage = { path = "../paletted_storage" } nbtx = { git = "https://github.com/bedrock-crustaceans/nbtx" } mojang-leveldb = "0.6" -thiserror = "1.0" +thiserror = "2.0" byteorder = "1.5" uuid = { version = "1.10", features = ["v4"] }