From ccc7c211ae11ca76664e6267aff25a5757f53e96 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Mon, 25 Nov 2024 17:41:36 +0100 Subject: [PATCH] Allow the 1.x version of thiserror in cargo-deny --- deny.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deny.toml b/deny.toml index a08b32e67..f1dde8f9a 100644 --- a/deny.toml +++ b/deny.toml @@ -60,6 +60,9 @@ skip = [ { name = "regex-automata", version = "0.2.0" }, # icu_list depends on this old version { name = "indexmap", version = "1.9.3" }, # schemars depends on this old version { name = "hashbrown" }, # Too many versions :( + # a few dependencies depend on the 1.x version of thiserror + { name = "thiserror", version = "1.0.69" }, + { name = "thiserror-impl", version = "1.0.69" }, # url and cookie-store depend on this old version of idna { name = "idna", version = "0.5.0" }, # axum-macros, sqlx-macros and sea-query-attr use an old version