From 8834ff766c1744b99c3eee13b384a3a9acce00c8 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Tue, 3 Oct 2023 18:36:58 +0200 Subject: [PATCH] De-duplicate itertools (#30472) Fixes #30460. --- Cargo.lock | 15 +++------------ Cargo.toml | 2 +- servo-tidy.toml | 1 - 3 files changed, 4 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 915c2bd5722..ac5cd68b769 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2908,15 +2908,6 @@ dependencies = [ "windows", ] -[[package]] -name = "itertools" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358" -dependencies = [ - "either", -] - [[package]] name = "itertools" version = "0.10.5" @@ -4865,7 +4856,7 @@ dependencies = [ "image", "indexmap", "ipc-channel", - "itertools 0.8.0", + "itertools", "jstraceable_derive", "keyboard-types", "lazy_static", @@ -5364,7 +5355,7 @@ dependencies = [ name = "servo_config_plugins" version = "0.0.1" dependencies = [ - "itertools 0.8.0", + "itertools", "proc-macro2", "quote", "syn 2.0.37", @@ -5784,7 +5775,7 @@ dependencies = [ "fxhash", "html5ever", "indexmap", - "itertools 0.10.5", + "itertools", "itoa", "lazy_static", "log", diff --git a/Cargo.toml b/Cargo.toml index 302e5c5de49..578ecd66dae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ image = "0.24" imsz = "0.2" indexmap = { version = "1.0.2", features = ["std"] } ipc-channel = "0.17" -itertools = "0.8" +itertools = "0.10" keyboard-types = "0.6" lazy_static = "1.4" libc = "0.2" diff --git a/servo-tidy.toml b/servo-tidy.toml index 89a39c57c82..b8491c8fecf 100644 --- a/servo-tidy.toml +++ b/servo-tidy.toml @@ -27,7 +27,6 @@ packages = [ "core-foundation", "core-foundation-sys", "futures", - "itertools", "libloading", "mio", "nix",