From f371bb4d0131006b103074c6b05f9a4ecafb40bd Mon Sep 17 00:00:00 2001
From: Tim Diekmann
Date: Tue, 15 Aug 2023 10:33:14 +0200
Subject: [PATCH] Limit version of `anyhow` to `1.0.72`
---
libs/error-stack/Cargo.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libs/error-stack/Cargo.toml b/libs/error-stack/Cargo.toml
index 818c5c8a739..adc713860b0 100644
--- a/libs/error-stack/Cargo.toml
+++ b/libs/error-stack/Cargo.toml
@@ -19,7 +19,7 @@ categories = ["rust-patterns", "no-std"]
[dependencies]
tracing-error = { version = "0.2", optional = true, default_features = false }
-anyhow = { version = "1.0.72", default-features = false, optional = true }
+anyhow = { version = ">=1.0.65, <=1.0.72", default-features = false, optional = true }
eyre = { version = "0.6", default-features = false, optional = true }
serde = { version = "1", default-features = false, optional = true }
spin = { version = "0.9", default-features = false, optional = true, features = ['rwlock', 'once'] }
|