From ea40b70757afe1c123b920f746ded10537effeed Mon Sep 17 00:00:00 2001 From: Stiopa Koltsov Date: Wed, 16 Oct 2024 15:32:49 -0700 Subject: [PATCH] Deprecation warnings Summary: After D64305791. Reviewed By: Will-MingLun-Li Differential Revision: D64476974 fbshipit-source-id: 4f2f027c840e81168765b3c954592469d7fcc45d --- starlark/Cargo.toml | 2 +- starlark_bin/Cargo.toml | 2 +- starlark_lsp/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/starlark/Cargo.toml b/starlark/Cargo.toml index 5c5224c7a..893de22c9 100644 --- a/starlark/Cargo.toml +++ b/starlark/Cargo.toml @@ -27,7 +27,7 @@ either = "1.8" erased-serde = "0.3.12" hashbrown = { version = "0.14.3", features = ["raw"] } inventory = "0.3.8" -itertools = "0.10" +itertools = "0.13.0" maplit = "1.0.2" memoffset = "0.6.4" num-bigint = "0.4.3" diff --git a/starlark_bin/Cargo.toml b/starlark_bin/Cargo.toml index 111393646..753c00bdd 100644 --- a/starlark_bin/Cargo.toml +++ b/starlark_bin/Cargo.toml @@ -26,7 +26,7 @@ clap = { version = "4.0.7", features = ["derive", "wrap_help"] } debugserver-types = "0.5.0" either = "1.8" globset = "0.4.13" -itertools = "0.10" +itertools = "0.13.0" lsp-types = "0.94.1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/starlark_lsp/Cargo.toml b/starlark_lsp/Cargo.toml index 87dc9be66..940103dea 100644 --- a/starlark_lsp/Cargo.toml +++ b/starlark_lsp/Cargo.toml @@ -18,7 +18,7 @@ anyhow = "1.0.65" derivative = "2.2" derive_more.workspace = true dupe = { workspace = true } -itertools = "0.10" +itertools = "0.13.0" lsp-server = "0.7.2" lsp-types = "0.94.1" serde = { version = "1.0", features = ["derive"] }