Skip to content

Commit f9494f1

Browse files
Merge #3697
3697: update itertools version to 0.9.0 r=matklad a=JoshMcguigan Updating `itertools` version per [feedback on #3689](#3689 (comment)) from @SomeoneToIgnore. Worth noting that `chalk` still uses `itertools` v0.8.2, so perhaps it is worth a PR to update that repo as well so we don't have to build both versions? Co-authored-by: Josh Mcguigan <joshmcg88@gmail.com>
2 parents eff1b3f + df58ab8 commit f9494f1

File tree

7 files changed

+22
-13
lines changed

7 files changed

+22
-13
lines changed

Cargo.lock

Lines changed: 16 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/ra_assists/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ doctest = false
1111
format-buf = "1.0.0"
1212
join_to_string = "0.1.3"
1313
rustc-hash = "1.1.0"
14-
itertools = "0.8.2"
14+
itertools = "0.9.0"
1515

1616
ra_syntax = { path = "../ra_syntax" }
1717
ra_text_edit = { path = "../ra_text_edit" }

crates/ra_fmt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ publish = false
99
doctest = false
1010

1111
[dependencies]
12-
itertools = "0.8.2"
12+
itertools = "0.9.0"
1313

1414
ra_syntax = { path = "../ra_syntax" }

crates/ra_hir/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rustc-hash = "1.1.0"
1313
either = "1.5.3"
1414
arrayvec = "0.5.1"
1515

16-
itertools = "0.8.2"
16+
itertools = "0.9.0"
1717

1818
ra_syntax = { path = "../ra_syntax" }
1919
ra_db = { path = "../ra_db" }

crates/ra_ide/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ wasm = []
1414
either = "1.5.3"
1515
format-buf = "1.0.0"
1616
indexmap = "1.3.2"
17-
itertools = "0.8.2"
17+
itertools = "0.9.0"
1818
join_to_string = "0.1.3"
1919
log = "0.4.8"
2020
rustc-hash = "1.1.0"

crates/ra_syntax/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repository = "https://github.com/rust-analyzer/rust-analyzer"
1111
doctest = false
1212

1313
[dependencies]
14-
itertools = "0.8.2"
14+
itertools = "0.9.0"
1515
rowan = "0.9.1"
1616
rustc_lexer = "0.1.0"
1717
rustc-hash = "1.1.0"

crates/rust-analyzer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ anyhow = "1.0.26"
1717
crossbeam-channel = "0.4.0"
1818
env_logger = { version = "0.7.1", default-features = false }
1919
globset = "0.4.4"
20-
itertools = "0.8.2"
20+
itertools = "0.9.0"
2121
jod-thread = "0.1.0"
2222
log = "0.4.8"
2323
lsp-types = { version = "0.73.0", features = ["proposed"] }

0 commit comments

Comments
 (0)