1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling@debian.org>
Date: Thu, 22 Feb 2024 13:29:06 +0100
Subject: Fudge rust crate version requirements
Author: Colin Watson <cjwatson@debian.org>
Forwarded: not-needed
---
Cargo.toml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index 2ad3e75..cddfc51 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -29,8 +29,8 @@ rust-version = "1.75"
# but needs a bit of work to make sure it's not used in the codebase
pyo3 = { version = "0.25", features = ["generate-import-lib", "num-bigint", "py-clone"] }
regex = "1.11.1"
-strum = { version = "0.27", features = ["derive"] }
-strum_macros = "0.27"
+strum = { version = "0.26", features = ["derive"] }
+strum_macros = "0.26"
serde_json = { version = "1.0.140", features = ["arbitrary_precision"] }
enum_dispatch = "0.3.13"
serde = { version = "1.0.219", features = ["derive"] }
@@ -43,7 +43,7 @@ idna = "1.0.3"
base64 = "0.22.1"
num-bigint = "0.4.6"
num-traits = "0.2.19"
-uuid = "1.17.0"
+uuid = "1.10.0"
jiter = { version = "0.10.0", features = ["python"] }
hex = "0.4.3"
|