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
|
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
Last-Update: 2025-10-17
---
Cargo.toml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index 60e4938..bf1572c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -29,9 +29,9 @@ rust-version = "1.75"
# but needs a bit of work to make sure it's not used in the codebase
pyo3 = { version = "0.26", features = ["generate-import-lib", "num-bigint", "py-clone"] }
regex = "1.11.3"
-strum = { version = "0.27", features = ["derive"] }
-strum_macros = "0.27"
-serde_json = { version = "1.0.145", features = ["arbitrary_precision"] }
+strum = { version = "0.26", features = ["derive"] }
+strum_macros = "0.26"
+serde_json = { version = "1.0.143", features = ["arbitrary_precision"] }
enum_dispatch = "0.3.13"
serde = { version = "1.0.219", features = ["derive"] }
speedate = "0.17.0"
|