diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-03-23 23:27:37 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-03-23 23:27:37 +0000 |
commit | f9494f114798f66b5f2174cf518a2951a82571d3 (patch) | |
tree | 4258df4f429fcbfb23354848187b9b6be27b005f /Cargo.lock | |
parent | eff1b3fe4d17dcecf0ec9a30c35d6c88715cb8ea (diff) | |
parent | df58ab8963fcd47efc5e4b83457d7cc0341cf83b (diff) |
Merge #3697
3697: update itertools version to 0.9.0 r=matklad a=JoshMcguigan
Updating `itertools` version per [feedback on #3689](https://github.com/rust-analyzer/rust-analyzer/pull/3689#discussion_r396267680) 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 <[email protected]>
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock index eb5247b69..d6bd2e13e 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -170,7 +170,7 @@ dependencies = [ | |||
170 | "chalk-macros", | 170 | "chalk-macros", |
171 | "chalk-rust-ir", | 171 | "chalk-rust-ir", |
172 | "ena", | 172 | "ena", |
173 | "itertools", | 173 | "itertools 0.8.2", |
174 | "petgraph", | 174 | "petgraph", |
175 | "rustc-hash", | 175 | "rustc-hash", |
176 | ] | 176 | ] |
@@ -521,6 +521,15 @@ dependencies = [ | |||
521 | ] | 521 | ] |
522 | 522 | ||
523 | [[package]] | 523 | [[package]] |
524 | name = "itertools" | ||
525 | version = "0.9.0" | ||
526 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
527 | checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b" | ||
528 | dependencies = [ | ||
529 | "either", | ||
530 | ] | ||
531 | |||
532 | [[package]] | ||
524 | name = "itoa" | 533 | name = "itoa" |
525 | version = "0.4.5" | 534 | version = "0.4.5" |
526 | source = "registry+https://github.com/rust-lang/crates.io-index" | 535 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -876,7 +885,7 @@ name = "ra_assists" | |||
876 | version = "0.1.0" | 885 | version = "0.1.0" |
877 | dependencies = [ | 886 | dependencies = [ |
878 | "format-buf", | 887 | "format-buf", |
879 | "itertools", | 888 | "itertools 0.9.0", |
880 | "join_to_string", | 889 | "join_to_string", |
881 | "ra_db", | 890 | "ra_db", |
882 | "ra_fmt", | 891 | "ra_fmt", |
@@ -928,7 +937,7 @@ dependencies = [ | |||
928 | name = "ra_fmt" | 937 | name = "ra_fmt" |
929 | version = "0.1.0" | 938 | version = "0.1.0" |
930 | dependencies = [ | 939 | dependencies = [ |
931 | "itertools", | 940 | "itertools 0.9.0", |
932 | "ra_syntax", | 941 | "ra_syntax", |
933 | ] | 942 | ] |
934 | 943 | ||
@@ -938,7 +947,7 @@ version = "0.1.0" | |||
938 | dependencies = [ | 947 | dependencies = [ |
939 | "arrayvec", | 948 | "arrayvec", |
940 | "either", | 949 | "either", |
941 | "itertools", | 950 | "itertools 0.9.0", |
942 | "log", | 951 | "log", |
943 | "ra_db", | 952 | "ra_db", |
944 | "ra_hir_def", | 953 | "ra_hir_def", |
@@ -1015,7 +1024,7 @@ dependencies = [ | |||
1015 | "format-buf", | 1024 | "format-buf", |
1016 | "indexmap", | 1025 | "indexmap", |
1017 | "insta", | 1026 | "insta", |
1018 | "itertools", | 1027 | "itertools 0.9.0", |
1019 | "join_to_string", | 1028 | "join_to_string", |
1020 | "log", | 1029 | "log", |
1021 | "ra_assists", | 1030 | "ra_assists", |
@@ -1101,7 +1110,7 @@ name = "ra_syntax" | |||
1101 | version = "0.1.0" | 1110 | version = "0.1.0" |
1102 | dependencies = [ | 1111 | dependencies = [ |
1103 | "arrayvec", | 1112 | "arrayvec", |
1104 | "itertools", | 1113 | "itertools 0.9.0", |
1105 | "once_cell", | 1114 | "once_cell", |
1106 | "ra_parser", | 1115 | "ra_parser", |
1107 | "ra_text_edit", | 1116 | "ra_text_edit", |
@@ -1278,7 +1287,7 @@ dependencies = [ | |||
1278 | "crossbeam-channel", | 1287 | "crossbeam-channel", |
1279 | "env_logger", | 1288 | "env_logger", |
1280 | "globset", | 1289 | "globset", |
1281 | "itertools", | 1290 | "itertools 0.9.0", |
1282 | "jod-thread", | 1291 | "jod-thread", |
1283 | "log", | 1292 | "log", |
1284 | "lsp-server", | 1293 | "lsp-server", |