aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock90
-rw-r--r--crates/ra_ide_api/Cargo.toml2
2 files changed, 90 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b26e2454c..643a10370 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -129,6 +129,15 @@ version = "1.3.2"
129source = "registry+https://github.com/rust-lang/crates.io-index" 129source = "registry+https://github.com/rust-lang/crates.io-index"
130 130
131[[package]] 131[[package]]
132name = "c2-chacha"
133version = "0.2.2"
134source = "registry+https://github.com/rust-lang/crates.io-index"
135dependencies = [
136 "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
137 "ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
138]
139
140[[package]]
132name = "cargo_metadata" 141name = "cargo_metadata"
133version = "0.8.0" 142version = "0.8.0"
134source = "registry+https://github.com/rust-lang/crates.io-index" 143source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -546,6 +555,15 @@ dependencies = [
546] 555]
547 556
548[[package]] 557[[package]]
558name = "getrandom"
559version = "0.1.6"
560source = "registry+https://github.com/rust-lang/crates.io-index"
561dependencies = [
562 "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
563 "libc 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)",
564]
565
566[[package]]
549name = "glob" 567name = "glob"
550version = "0.2.11" 568version = "0.2.11"
551source = "registry+https://github.com/rust-lang/crates.io-index" 569source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -719,6 +737,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
719name = "lazy_static" 737name = "lazy_static"
720version = "1.3.0" 738version = "1.3.0"
721source = "registry+https://github.com/rust-lang/crates.io-index" 739source = "registry+https://github.com/rust-lang/crates.io-index"
740dependencies = [
741 "spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
742]
722 743
723[[package]] 744[[package]]
724name = "lazycell" 745name = "lazycell"
@@ -1004,6 +1025,11 @@ dependencies = [
1004] 1025]
1005 1026
1006[[package]] 1027[[package]]
1028name = "ppv-lite86"
1029version = "0.2.5"
1030source = "registry+https://github.com/rust-lang/crates.io-index"
1031
1032[[package]]
1007name = "proc-macro2" 1033name = "proc-macro2"
1008version = "0.4.30" 1034version = "0.4.30"
1009source = "registry+https://github.com/rust-lang/crates.io-index" 1035source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1157,7 +1183,7 @@ dependencies = [
1157 "ra_prof 0.1.0", 1183 "ra_prof 0.1.0",
1158 "ra_syntax 0.1.0", 1184 "ra_syntax 0.1.0",
1159 "ra_text_edit 0.1.0", 1185 "ra_text_edit 0.1.0",
1160 "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", 1186 "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
1161 "rayon 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 1187 "rayon 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
1162 "relative-path 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1188 "relative-path 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
1163 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 1189 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1318,6 +1344,19 @@ dependencies = [
1318] 1344]
1319 1345
1320[[package]] 1346[[package]]
1347name = "rand"
1348version = "0.7.0"
1349source = "registry+https://github.com/rust-lang/crates.io-index"
1350dependencies = [
1351 "getrandom 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
1352 "libc 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)",
1353 "rand_chacha 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
1354 "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
1355 "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
1356 "rand_pcg 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
1357]
1358
1359[[package]]
1321name = "rand_chacha" 1360name = "rand_chacha"
1322version = "0.1.1" 1361version = "0.1.1"
1323source = "registry+https://github.com/rust-lang/crates.io-index" 1362source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1327,6 +1366,16 @@ dependencies = [
1327] 1366]
1328 1367
1329[[package]] 1368[[package]]
1369name = "rand_chacha"
1370version = "0.2.0"
1371source = "registry+https://github.com/rust-lang/crates.io-index"
1372dependencies = [
1373 "autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
1374 "c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
1375 "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
1376]
1377
1378[[package]]
1330name = "rand_core" 1379name = "rand_core"
1331version = "0.3.1" 1380version = "0.3.1"
1332source = "registry+https://github.com/rust-lang/crates.io-index" 1381source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1340,6 +1389,14 @@ version = "0.4.0"
1340source = "registry+https://github.com/rust-lang/crates.io-index" 1389source = "registry+https://github.com/rust-lang/crates.io-index"
1341 1390
1342[[package]] 1391[[package]]
1392name = "rand_core"
1393version = "0.5.0"
1394source = "registry+https://github.com/rust-lang/crates.io-index"
1395dependencies = [
1396 "getrandom 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
1397]
1398
1399[[package]]
1343name = "rand_hc" 1400name = "rand_hc"
1344version = "0.1.0" 1401version = "0.1.0"
1345source = "registry+https://github.com/rust-lang/crates.io-index" 1402source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1348,6 +1405,14 @@ dependencies = [
1348] 1405]
1349 1406
1350[[package]] 1407[[package]]
1408name = "rand_hc"
1409version = "0.2.0"
1410source = "registry+https://github.com/rust-lang/crates.io-index"
1411dependencies = [
1412 "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
1413]
1414
1415[[package]]
1351name = "rand_isaac" 1416name = "rand_isaac"
1352version = "0.1.1" 1417version = "0.1.1"
1353source = "registry+https://github.com/rust-lang/crates.io-index" 1418source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1388,6 +1453,15 @@ dependencies = [
1388] 1453]
1389 1454
1390[[package]] 1455[[package]]
1456name = "rand_pcg"
1457version = "0.2.0"
1458source = "registry+https://github.com/rust-lang/crates.io-index"
1459dependencies = [
1460 "autocfg 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
1461 "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
1462]
1463
1464[[package]]
1391name = "rand_xorshift" 1465name = "rand_xorshift"
1392version = "0.1.1" 1466version = "0.1.1"
1393source = "registry+https://github.com/rust-lang/crates.io-index" 1467source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1655,6 +1729,11 @@ dependencies = [
1655] 1729]
1656 1730
1657[[package]] 1731[[package]]
1732name = "spin"
1733version = "0.5.0"
1734source = "registry+https://github.com/rust-lang/crates.io-index"
1735
1736[[package]]
1658name = "stacker" 1737name = "stacker"
1659version = "0.1.5" 1738version = "0.1.5"
1660source = "registry+https://github.com/rust-lang/crates.io-index" 1739source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2045,6 +2124,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2045"checksum block-padding 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4dc3af3ee2e12f3e5d224e5e1e3d73668abbeb69e566d361f7d5563a4fdf09" 2124"checksum block-padding 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4dc3af3ee2e12f3e5d224e5e1e3d73668abbeb69e566d361f7d5563a4fdf09"
2046"checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" 2125"checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
2047"checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" 2126"checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5"
2127"checksum c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7d64d04786e0f528460fc884753cf8dddcc466be308f6026f8e355c41a0e4101"
2048"checksum cargo_metadata 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "929766d993a2fde7a0ae962ee82429069cd7b68839cd9375b98efd719df65d3a" 2128"checksum cargo_metadata 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "929766d993a2fde7a0ae962ee82429069cd7b68839cd9375b98efd719df65d3a"
2049"checksum cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)" = "39f75544d7bbaf57560d2168f28fd649ff9c76153874db88bdbdfd839b1a7e7d" 2129"checksum cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)" = "39f75544d7bbaf57560d2168f28fd649ff9c76153874db88bdbdfd839b1a7e7d"
2050"checksum cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33" 2130"checksum cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33"
@@ -2093,6 +2173,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2093"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" 2173"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
2094"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" 2174"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
2095"checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec" 2175"checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
2176"checksum getrandom 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "e65cce4e5084b14874c4e7097f38cab54f47ee554f9194673456ea379dcc4c55"
2096"checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" 2177"checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb"
2097"checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" 2178"checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
2098"checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" 2179"checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205"
@@ -2148,20 +2229,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2148"checksum pest_generator 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "63120576c4efd69615b5537d3d052257328a4ca82876771d6944424ccfd9f646" 2229"checksum pest_generator 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "63120576c4efd69615b5537d3d052257328a4ca82876771d6944424ccfd9f646"
2149"checksum pest_meta 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f249ea6de7c7b7aba92b4ff4376a994c6dbd98fd2166c89d5c4947397ecb574d" 2230"checksum pest_meta 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f249ea6de7c7b7aba92b4ff4376a994c6dbd98fd2166c89d5c4947397ecb574d"
2150"checksum petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f" 2231"checksum petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f"
2232"checksum ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e3cbf9f658cdb5000fcf6f362b8ea2ba154b9f146a61c7a20d647034c6b6561b"
2151"checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" 2233"checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
2152"checksum proptest 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cf147e022eacf0c8a054ab864914a7602618adba841d800a9a9868a5237a529f" 2234"checksum proptest 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cf147e022eacf0c8a054ab864914a7602618adba841d800a9a9868a5237a529f"
2153"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" 2235"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0"
2154"checksum quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "faf4799c5d274f3868a4aae320a0a182cbd2baee377b378f080e16a23e9d80db" 2236"checksum quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "faf4799c5d274f3868a4aae320a0a182cbd2baee377b378f080e16a23e9d80db"
2155"checksum ra_vfs 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fb7cd4e302032c5ab514f1c01c89727cd96fd950dd36f9ebee9252df45d9fb1a" 2237"checksum ra_vfs 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fb7cd4e302032c5ab514f1c01c89727cd96fd950dd36f9ebee9252df45d9fb1a"
2156"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" 2238"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
2239"checksum rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d47eab0e83d9693d40f825f86948aa16eff6750ead4bdffc4ab95b8b3a7f052c"
2157"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" 2240"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
2241"checksum rand_chacha 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e193067942ef6f485a349a113329140d0ab9e2168ce92274499bb0e9a4190d9d"
2158"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 2242"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
2159"checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0" 2243"checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0"
2244"checksum rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "615e683324e75af5d43d8f7a39ffe3ee4a9dc42c5c701167a71dc59c3a493aca"
2160"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" 2245"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
2246"checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2161"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" 2247"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
2162"checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" 2248"checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
2163"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" 2249"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
2164"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" 2250"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
2251"checksum rand_pcg 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3e196346cbbc5c70c77e7b4926147ee8e383a38ee4d15d58a08098b169e492b6"
2165"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" 2252"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
2166"checksum rayon 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a4b0186e22767d5b9738a05eab7c6ac90b15db17e5b5f9bd87976dd7d89a10a4" 2253"checksum rayon 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a4b0186e22767d5b9738a05eab7c6ac90b15db17e5b5f9bd87976dd7d89a10a4"
2167"checksum rayon-core 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ebbe0df8435ac0c397d467b6cad6d25543d06e8a019ef3f6af3c384597515bd2" 2254"checksum rayon-core 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ebbe0df8435ac0c397d467b6cad6d25543d06e8a019ef3f6af3c384597515bd2"
@@ -2194,6 +2281,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2194"checksum slug 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373" 2281"checksum slug 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373"
2195"checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7" 2282"checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7"
2196"checksum smol_str 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "e6507d018aa8dfcaa08aaab587605591cd2109df66a921486a2220e2daf9fa29" 2283"checksum smol_str 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "e6507d018aa8dfcaa08aaab587605591cd2109df66a921486a2220e2daf9fa29"
2284"checksum spin 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44363f6f51401c34e7be73db0db371c04705d35efbe9f7d6082e03a921a32c55"
2197"checksum stacker 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fb79482f57cf598af52094ec4cc3b3c42499d3ce5bd426f2ac41515b7e57404b" 2285"checksum stacker 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fb79482f57cf598af52094ec4cc3b3c42499d3ce5bd426f2ac41515b7e57404b"
2198"checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 2286"checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2199"checksum superslice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ab16ced94dbd8a46c82fd81e3ed9a8727dac2977ea869d217bcc4ea1f122e81f" 2287"checksum superslice 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ab16ced94dbd8a46c82fd81e3ed9a8727dac2977ea869d217bcc4ea1f122e81f"
diff --git a/crates/ra_ide_api/Cargo.toml b/crates/ra_ide_api/Cargo.toml
index 5bd768817..c49a05de1 100644
--- a/crates/ra_ide_api/Cargo.toml
+++ b/crates/ra_ide_api/Cargo.toml
@@ -14,7 +14,7 @@ fst = { version = "0.3.1", default-features = false }
14rustc-hash = "1.0" 14rustc-hash = "1.0"
15unicase = "2.2.0" 15unicase = "2.2.0"
16superslice = "1.0.0" 16superslice = "1.0.0"
17rand = "0.6.5" 17rand = { version = "0.7.0", features = ["small_rng"] }
18 18
19ra_syntax = { path = "../ra_syntax" } 19ra_syntax = { path = "../ra_syntax" }
20ra_text_edit = { path = "../ra_text_edit" } 20ra_text_edit = { path = "../ra_text_edit" }