From 346da3af469525d55bdd8bf7e58d46edaf8de505 Mon Sep 17 00:00:00 2001 From: Casper Meijn Date: Fri, 6 Dec 2024 10:13:51 +0100 Subject: [PATCH] build(deps): Update to `thiserror` version 2 Depencency `thiserror` has some breaking changes, but non of them seem to impact `graphql-parser`. `cargo semver-checks` reports no changes on the API. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bdff566..6a91d58 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ edition = "2018" [dependencies] combine = "4.6.6" -thiserror = "1.0.11" +thiserror = "2" [dev-dependencies] pretty_assertions = "0.5.0"