aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock46
1 files changed, 18 insertions, 28 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 9e0d0714a..61ae8157a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -52,17 +52,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
52checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8" 52checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
53 53
54[[package]] 54[[package]]
55name = "atty"
56version = "0.2.14"
57source = "registry+https://github.com/rust-lang/crates.io-index"
58checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
59dependencies = [
60 "hermit-abi",
61 "libc",
62 "winapi 0.3.9",
63]
64
65[[package]]
66name = "autocfg" 55name = "autocfg"
67version = "1.0.0" 56version = "1.0.0"
68source = "registry+https://github.com/rust-lang/crates.io-index" 57source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -196,18 +185,6 @@ dependencies = [
196] 185]
197 186
198[[package]] 187[[package]]
199name = "clicolors-control"
200version = "1.0.1"
201source = "registry+https://github.com/rust-lang/crates.io-index"
202checksum = "90082ee5dcdd64dc4e9e0d37fbf3ee325419e39c0092191e0393df65518f741e"
203dependencies = [
204 "atty",
205 "lazy_static",
206 "libc",
207 "winapi 0.3.9",
208]
209
210[[package]]
211name = "cloudabi" 188name = "cloudabi"
212version = "0.1.0" 189version = "0.1.0"
213source = "registry+https://github.com/rust-lang/crates.io-index" 190source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -218,11 +195,10 @@ dependencies = [
218 195
219[[package]] 196[[package]]
220name = "console" 197name = "console"
221version = "0.10.3" 198version = "0.11.3"
222source = "registry+https://github.com/rust-lang/crates.io-index" 199source = "registry+https://github.com/rust-lang/crates.io-index"
223checksum = "2586208b33573b7f76ccfbe5adb076394c88deaf81b84d7213969805b0a952a7" 200checksum = "8c0994e656bba7b922d8dd1245db90672ffb701e684e45be58f20719d69abc5a"
224dependencies = [ 201dependencies = [
225 "clicolors-control",
226 "encode_unicode", 202 "encode_unicode",
227 "lazy_static", 203 "lazy_static",
228 "libc", 204 "libc",
@@ -352,6 +328,15 @@ dependencies = [
352] 328]
353 329
354[[package]] 330[[package]]
331name = "expect"
332version = "0.1.0"
333dependencies = [
334 "difference",
335 "once_cell",
336 "stdx",
337]
338
339[[package]]
355name = "filetime" 340name = "filetime"
356version = "0.2.10" 341version = "0.2.10"
357source = "registry+https://github.com/rust-lang/crates.io-index" 342source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -544,9 +529,9 @@ dependencies = [
544 529
545[[package]] 530[[package]]
546name = "insta" 531name = "insta"
547version = "0.16.0" 532version = "0.16.1"
548source = "registry+https://github.com/rust-lang/crates.io-index" 533source = "registry+https://github.com/rust-lang/crates.io-index"
549checksum = "8386e795fb3927131ea4cede203c529a333652eb6dc4ff29616b832b27e9b096" 534checksum = "617e921abc813f96a3b00958c079e7bf1e2db998f8a04f1546dd967373a418ee"
550dependencies = [ 535dependencies = [
551 "console", 536 "console",
552 "difference", 537 "difference",
@@ -1134,6 +1119,7 @@ name = "ra_ide"
1134version = "0.1.0" 1119version = "0.1.0"
1135dependencies = [ 1120dependencies = [
1136 "either", 1121 "either",
1122 "expect",
1137 "indexmap", 1123 "indexmap",
1138 "insta", 1124 "insta",
1139 "itertools", 1125 "itertools",
@@ -1262,6 +1248,7 @@ dependencies = [
1262 "ra_syntax", 1248 "ra_syntax",
1263 "ra_text_edit", 1249 "ra_text_edit",
1264 "rustc-hash", 1250 "rustc-hash",
1251 "test_utils",
1265] 1252]
1266 1253
1267[[package]] 1254[[package]]
@@ -1464,15 +1451,18 @@ dependencies = [
1464 "ra_hir_def", 1451 "ra_hir_def",
1465 "ra_hir_ty", 1452 "ra_hir_ty",
1466 "ra_ide", 1453 "ra_ide",
1454 "ra_ide_db",
1467 "ra_mbe", 1455 "ra_mbe",
1468 "ra_proc_macro_srv", 1456 "ra_proc_macro_srv",
1469 "ra_prof", 1457 "ra_prof",
1470 "ra_project_model", 1458 "ra_project_model",
1459 "ra_ssr",
1471 "ra_syntax", 1460 "ra_syntax",
1472 "ra_text_edit", 1461 "ra_text_edit",
1473 "ra_toolchain", 1462 "ra_toolchain",
1474 "ra_tt", 1463 "ra_tt",
1475 "rand", 1464 "rand",
1465 "rayon",
1476 "rustc-hash", 1466 "rustc-hash",
1477 "serde", 1467 "serde",
1478 "serde_json", 1468 "serde_json",