From dc1396eec76ef5766f25a483edc1870f50af0aa0 Mon Sep 17 00:00:00 2001 From: kjeremy Date: Wed, 30 Dec 2020 10:39:50 -0500 Subject: Update crates --- crates/assists/Cargo.toml | 2 +- crates/completion/Cargo.toml | 2 +- crates/hir/Cargo.toml | 2 +- crates/hir_def/Cargo.toml | 2 +- crates/hir_ty/Cargo.toml | 2 +- crates/ide/Cargo.toml | 2 +- crates/ide_db/Cargo.toml | 2 +- crates/project_model/Cargo.toml | 2 +- crates/rust-analyzer/Cargo.toml | 2 +- crates/ssr/Cargo.toml | 2 +- crates/syntax/Cargo.toml | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) (limited to 'crates') diff --git a/crates/assists/Cargo.toml b/crates/assists/Cargo.toml index 3fd8327d6..ed8ad666f 100644 --- a/crates/assists/Cargo.toml +++ b/crates/assists/Cargo.toml @@ -11,7 +11,7 @@ doctest = false [dependencies] rustc-hash = "1.1.0" -itertools = "0.9.0" +itertools = "0.10.0" either = "1.6.1" stdx = { path = "../stdx", version = "0.0.0" } diff --git a/crates/completion/Cargo.toml b/crates/completion/Cargo.toml index 35e169a28..78e93e78e 100644 --- a/crates/completion/Cargo.toml +++ b/crates/completion/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" doctest = false [dependencies] -itertools = "0.9.0" +itertools = "0.10.0" log = "0.4.8" rustc-hash = "1.1.0" either = "1.6.1" diff --git a/crates/hir/Cargo.toml b/crates/hir/Cargo.toml index 6dc5ad63b..d4ea7327e 100644 --- a/crates/hir/Cargo.toml +++ b/crates/hir/Cargo.toml @@ -14,7 +14,7 @@ log = "0.4.8" rustc-hash = "1.1.0" either = "1.5.3" arrayvec = "0.5.1" -itertools = "0.9.0" +itertools = "0.10.0" stdx = { path = "../stdx", version = "0.0.0" } syntax = { path = "../syntax", version = "0.0.0" } diff --git a/crates/hir_def/Cargo.toml b/crates/hir_def/Cargo.toml index a88b5f57e..e8b581e2f 100644 --- a/crates/hir_def/Cargo.toml +++ b/crates/hir_def/Cargo.toml @@ -17,7 +17,7 @@ either = "1.5.3" anymap = "0.12.1" drop_bomb = "0.1.4" fst = { version = "0.4", default-features = false } -itertools = "0.9.0" +itertools = "0.10.0" indexmap = "1.4.0" smallvec = "1.4.0" diff --git a/crates/hir_ty/Cargo.toml b/crates/hir_ty/Cargo.toml index 965c1780a..2dfccd191 100644 --- a/crates/hir_ty/Cargo.toml +++ b/crates/hir_ty/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" doctest = false [dependencies] -itertools = "0.9.0" +itertools = "0.10.0" arrayvec = "0.5.1" smallvec = "1.2.0" ena = "0.14.0" diff --git a/crates/ide/Cargo.toml b/crates/ide/Cargo.toml index 4d483580d..f1544dbe0 100644 --- a/crates/ide/Cargo.toml +++ b/crates/ide/Cargo.toml @@ -12,7 +12,7 @@ doctest = false [dependencies] either = "1.5.3" indexmap = "1.4.0" -itertools = "0.9.0" +itertools = "0.10.0" log = "0.4.8" rustc-hash = "1.1.0" oorandom = "11.1.2" diff --git a/crates/ide_db/Cargo.toml b/crates/ide_db/Cargo.toml index 0ad6e1000..ebe53c8ee 100644 --- a/crates/ide_db/Cargo.toml +++ b/crates/ide_db/Cargo.toml @@ -19,7 +19,7 @@ fst = { version = "0.4", default-features = false } rustc-hash = "1.1.0" once_cell = "1.3.1" either = "1.6.1" -itertools = "0.9.0" +itertools = "0.10.0" stdx = { path = "../stdx", version = "0.0.0" } syntax = { path = "../syntax", version = "0.0.0" } diff --git a/crates/project_model/Cargo.toml b/crates/project_model/Cargo.toml index c55e85709..a65e42261 100644 --- a/crates/project_model/Cargo.toml +++ b/crates/project_model/Cargo.toml @@ -16,7 +16,7 @@ cargo_metadata = "=0.12.0" serde = { version = "1.0.106", features = ["derive"] } serde_json = "1.0.48" anyhow = "1.0.26" -itertools = "0.9.0" +itertools = "0.10.0" arena = { path = "../arena", version = "0.0.0" } cfg = { path = "../cfg", version = "0.0.0" } diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml index 53e70eaf7..0a002337b 100644 --- a/crates/rust-analyzer/Cargo.toml +++ b/crates/rust-analyzer/Cargo.toml @@ -18,7 +18,7 @@ path = "src/bin/main.rs" anyhow = "1.0.26" crossbeam-channel = "0.5.0" env_logger = { version = "0.8.1", default-features = false } -itertools = "0.9.0" +itertools = "0.10.0" jod-thread = "0.1.0" log = "0.4.8" lsp-types = { version = "0.86.0", features = ["proposed"] } diff --git a/crates/ssr/Cargo.toml b/crates/ssr/Cargo.toml index 98ed25fb6..339eda86a 100644 --- a/crates/ssr/Cargo.toml +++ b/crates/ssr/Cargo.toml @@ -12,7 +12,7 @@ doctest = false [dependencies] rustc-hash = "1.1.0" -itertools = "0.9.0" +itertools = "0.10.0" text_edit = { path = "../text_edit", version = "0.0.0" } syntax = { path = "../syntax", version = "0.0.0" } diff --git a/crates/syntax/Cargo.toml b/crates/syntax/Cargo.toml index 21015591c..5d8389ade 100644 --- a/crates/syntax/Cargo.toml +++ b/crates/syntax/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" doctest = false [dependencies] -itertools = "0.9.0" +itertools = "0.10.0" rowan = "0.10.0" rustc_lexer = { version = "695.0.0", package = "rustc-ap-rustc_lexer" } rustc-hash = "1.1.0" -- cgit v1.2.3