From 52b462954a6c6dc2caffad4238876cfe647112d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Wed, 29 Nov 2023 18:00:12 +1300 Subject: [PATCH] Relax thiserror requirement --- Cargo.lock | 2 +- crates/lib/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6adcaa7..c453128 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3803,7 +3803,7 @@ checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" [[package]] name = "watchexec" -version = "2.3.1" +version = "2.3.2" dependencies = [ "async-priority-channel", "async-recursion", diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index cc733d7..db56e3e 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "watchexec" -version = "2.3.1" +version = "2.3.2" authors = ["Matt Green ", "FĂ©lix Saparelli "] license = "Apache-2.0" @@ -23,7 +23,7 @@ clearscreen = "2.0.1" futures = "0.3.16" miette = "5.3.0" once_cell = "1.8.0" -thiserror = "=1.0.40" +thiserror = "1.0.0" normalize-path = "0.2.0" [dependencies.command-group]