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
|
Description: accept newer minor version of crate itertools
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2025-10-09
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/cranelift/isle/veri/veri_engine/Cargo.toml
+++ b/cranelift/isle/veri/veri_engine/Cargo.toml
@@ -23,7 +23,7 @@
veri_ir = { path = "../veri_ir" }
easy-smt = "0.2.2"
clap = { workspace = true }
-itertools = "0.12.0"
+itertools = ">= 0.12.0, <= 0.13"
log = { workspace = true }
env_logger = { workspace = true }
anyhow = { workspace = true }
--- a/crates/cranelift/Cargo.toml
+++ b/crates/cranelift/Cargo.toml
@@ -31,7 +31,7 @@
thiserror = { workspace = true }
cfg-if = { workspace = true }
wasmtime-versioned-export-macros = { workspace = true }
-itertools = "0.12"
+itertools = ">= 0.12, <= 0.13"
[features]
all-arch = ["cranelift-codegen/all-arch"]
|