You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
729 B
27 lines
729 B
4 weeks ago
|
From e304730b3d9004238b04555504a05b12b39d692d Mon Sep 17 00:00:00 2001
|
||
|
From: "Benjamin A. Beasley" <code@musicinmybrain.net>
|
||
|
Date: Sun, 8 Sep 2024 10:05:18 -0400
|
||
|
Subject: [PATCH] Downstream-only: allow an older version of idna
|
||
|
|
||
|
The many new dependencies of idna 1.x mean it will take some time to update.
|
||
|
---
|
||
|
Cargo.toml | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/Cargo.toml b/Cargo.toml
|
||
|
index 8cc5be11..287ebcb3 100644
|
||
|
--- a/Cargo.toml
|
||
|
+++ b/Cargo.toml
|
||
|
@@ -41,7 +41,7 @@ smallvec = "1.13.2"
|
||
|
ahash = "0.8.10"
|
||
|
url = "2.5.0"
|
||
|
# idna is already required by url, added here to be explicit
|
||
|
-idna = "1.0.2"
|
||
|
+idna = ">=0.5.0, <2"
|
||
|
base64 = "0.22.1"
|
||
|
num-bigint = "0.4.6"
|
||
|
python3-dll-a = "0.2.10"
|
||
|
--
|
||
|
2.46.0
|
||
|
|