diff --git a/Cargo.lock b/Cargo.lock index 4f2a9c45..0d5740d2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2536,7 +2536,7 @@ dependencies = [ "hyper", "indexer-selection", "ipnetwork", - "itertools 0.14.0", + "itertools 0.15.0", "lazy_static", "ordered-float", "parking_lot", @@ -3237,6 +3237,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.18" diff --git a/Cargo.toml b/Cargo.toml index 429a27f7..21b97400 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ hickory-resolver = "0.26.0" http = "1.1.0" indexer-selection = { git = "https://github.com/edgeandnode/candidate-selection", rev = "8bc7d42" } ipnetwork = { version = "0.21.0", default-features = false } -itertools = "0.14.0" +itertools = "0.15.0" lazy_static = "1.4.0" ordered-float = "5.0.0" parking_lot = "0.12.3"