diff options
author | Josh Mcguigan <[email protected]> | 2020-03-23 23:22:46 +0000 |
---|---|---|
committer | Josh Mcguigan <[email protected]> | 2020-03-23 23:22:46 +0000 |
commit | df58ab8963fcd47efc5e4b83457d7cc0341cf83b (patch) | |
tree | 4258df4f429fcbfb23354848187b9b6be27b005f | |
parent | eff1b3fe4d17dcecf0ec9a30c35d6c88715cb8ea (diff) |
update itertools version to 0.9.0
-rw-r--r-- | Cargo.lock | 23 | ||||
-rw-r--r-- | crates/ra_assists/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_fmt/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_hir/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_ide/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_syntax/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/rust-analyzer/Cargo.toml | 2 |
7 files changed, 22 insertions, 13 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", |
diff --git a/crates/ra_assists/Cargo.toml b/crates/ra_assists/Cargo.toml index 85adddb5b..707746ad5 100644 --- a/crates/ra_assists/Cargo.toml +++ b/crates/ra_assists/Cargo.toml | |||
@@ -11,7 +11,7 @@ doctest = false | |||
11 | format-buf = "1.0.0" | 11 | format-buf = "1.0.0" |
12 | join_to_string = "0.1.3" | 12 | join_to_string = "0.1.3" |
13 | rustc-hash = "1.1.0" | 13 | rustc-hash = "1.1.0" |
14 | itertools = "0.8.2" | 14 | itertools = "0.9.0" |
15 | 15 | ||
16 | ra_syntax = { path = "../ra_syntax" } | 16 | ra_syntax = { path = "../ra_syntax" } |
17 | ra_text_edit = { path = "../ra_text_edit" } | 17 | ra_text_edit = { path = "../ra_text_edit" } |
diff --git a/crates/ra_fmt/Cargo.toml b/crates/ra_fmt/Cargo.toml index ea9befeaf..e9d057afc 100644 --- a/crates/ra_fmt/Cargo.toml +++ b/crates/ra_fmt/Cargo.toml | |||
@@ -9,6 +9,6 @@ publish = false | |||
9 | doctest = false | 9 | doctest = false |
10 | 10 | ||
11 | [dependencies] | 11 | [dependencies] |
12 | itertools = "0.8.2" | 12 | itertools = "0.9.0" |
13 | 13 | ||
14 | ra_syntax = { path = "../ra_syntax" } | 14 | ra_syntax = { path = "../ra_syntax" } |
diff --git a/crates/ra_hir/Cargo.toml b/crates/ra_hir/Cargo.toml index 42193b492..ba7b39a19 100644 --- a/crates/ra_hir/Cargo.toml +++ b/crates/ra_hir/Cargo.toml | |||
@@ -13,7 +13,7 @@ rustc-hash = "1.1.0" | |||
13 | either = "1.5.3" | 13 | either = "1.5.3" |
14 | arrayvec = "0.5.1" | 14 | arrayvec = "0.5.1" |
15 | 15 | ||
16 | itertools = "0.8.2" | 16 | itertools = "0.9.0" |
17 | 17 | ||
18 | ra_syntax = { path = "../ra_syntax" } | 18 | ra_syntax = { path = "../ra_syntax" } |
19 | ra_db = { path = "../ra_db" } | 19 | ra_db = { path = "../ra_db" } |
diff --git a/crates/ra_ide/Cargo.toml b/crates/ra_ide/Cargo.toml index 7235c944c..36eec0e60 100644 --- a/crates/ra_ide/Cargo.toml +++ b/crates/ra_ide/Cargo.toml | |||
@@ -14,7 +14,7 @@ wasm = [] | |||
14 | either = "1.5.3" | 14 | either = "1.5.3" |
15 | format-buf = "1.0.0" | 15 | format-buf = "1.0.0" |
16 | indexmap = "1.3.2" | 16 | indexmap = "1.3.2" |
17 | itertools = "0.8.2" | 17 | itertools = "0.9.0" |
18 | join_to_string = "0.1.3" | 18 | join_to_string = "0.1.3" |
19 | log = "0.4.8" | 19 | log = "0.4.8" |
20 | rustc-hash = "1.1.0" | 20 | rustc-hash = "1.1.0" |
diff --git a/crates/ra_syntax/Cargo.toml b/crates/ra_syntax/Cargo.toml index 8efc6b368..6fccc2303 100644 --- a/crates/ra_syntax/Cargo.toml +++ b/crates/ra_syntax/Cargo.toml | |||
@@ -11,7 +11,7 @@ repository = "https://github.com/rust-analyzer/rust-analyzer" | |||
11 | doctest = false | 11 | doctest = false |
12 | 12 | ||
13 | [dependencies] | 13 | [dependencies] |
14 | itertools = "0.8.2" | 14 | itertools = "0.9.0" |
15 | rowan = "0.9.1" | 15 | rowan = "0.9.1" |
16 | rustc_lexer = "0.1.0" | 16 | rustc_lexer = "0.1.0" |
17 | rustc-hash = "1.1.0" | 17 | rustc-hash = "1.1.0" |
diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml index d44f0ef1d..e071e9b8d 100644 --- a/crates/rust-analyzer/Cargo.toml +++ b/crates/rust-analyzer/Cargo.toml | |||
@@ -17,7 +17,7 @@ anyhow = "1.0.26" | |||
17 | crossbeam-channel = "0.4.0" | 17 | crossbeam-channel = "0.4.0" |
18 | env_logger = { version = "0.7.1", default-features = false } | 18 | env_logger = { version = "0.7.1", default-features = false } |
19 | globset = "0.4.4" | 19 | globset = "0.4.4" |
20 | itertools = "0.8.2" | 20 | itertools = "0.9.0" |
21 | jod-thread = "0.1.0" | 21 | jod-thread = "0.1.0" |
22 | log = "0.4.8" | 22 | log = "0.4.8" |
23 | lsp-types = { version = "0.73.0", features = ["proposed"] } | 23 | lsp-types = { version = "0.73.0", features = ["proposed"] } |