From f78586ff7bbe37e2a396e6b97ae6a6a2820c1087 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Gonz=C3=A1lez?= Date: Sat, 15 Apr 2023 15:58:08 +0200 Subject: [PATCH] Remove now unused `itertools` dependency The `itertools` dependency became unused at a3b104a2edd7e7a7d2944d8ee06eacc77dc6da8c, so there is no point in declaring it as a dependency any longer. This was detected with the help of the [`cargo-udeps`](https://github.com/est31/cargo-udeps) tool. I then verified that it was not a false positive. --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3b0ce3fd..9fba627c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,6 @@ path = "src/main.rs" required-features = ["binary"] [dependencies] -itertools = "0.10.3" zopfli = { version = "0.7.1", optional = true } rgb = "0.8.33" indexmap = "1.9.1"