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 35
|
Description: accept older branch of crate itertools
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2025-03-11
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/dctap/Cargo.toml
+++ b/dctap/Cargo.toml
@@ -11,7 +11,7 @@
[dependencies]
csv = "1.3.0"
-itertools = "0.14"
+itertools = ">= 0.13.0, <= 0.14"
iri_s.workspace = true
serde.workspace = true
serde_json = "1.0"
--- a/shacl_ast/Cargo.toml
+++ b/shacl_ast/Cargo.toml
@@ -22,5 +22,5 @@
thiserror = "2.0"
lazy_static = "1"
const_format = "0.2"
-itertools = "0.14"
+itertools = ">= 0.13.0, <= 0.14"
oxrdf = { workspace = true, features = ["oxsdatatypes"] }
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -81,5 +81,5 @@
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2.2.2"
-itertools = "0.14"
+itertools = ">= 0.13.0, <= 0.14"
lazy_static = "1"
|