1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: accept newer minor versions of crate itertools
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2025-09-19
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -18,7 +18,7 @@
clap_mangen = { version = "0.2.5", optional = true } # for generating man - could manually do this
colored = "3.0.0" # terminal colouring helper
cansi = { version = "=2.2.1", optional = true } # ANSI escape code helper; decolored - no dependencies
-itertools = "0.10.5" # iterator methods used for building device tree
+itertools = ">= 0.10.5, <= 0.13" # iterator methods used for building device tree
rusb = { version = "0.9.4", optional = true } # libusb bindings
nusb = { version = "0.2.0", optional = true } # pure Rust USB library
serde = { version = "1.0", features = ["derive"] } # --json serialisation and --from-json deserialisation
|