diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 71 |
1 files changed, 54 insertions, 17 deletions
diff --git a/Cargo.lock b/Cargo.lock index 7dffcd0bc..365b77f41 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -118,6 +118,14 @@ dependencies = [ | |||
118 | ] | 118 | ] |
119 | 119 | ||
120 | [[package]] | 120 | [[package]] |
121 | name = "bstr" | ||
122 | version = "0.2.6" | ||
123 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
124 | dependencies = [ | ||
125 | "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
126 | ] | ||
127 | |||
128 | [[package]] | ||
121 | name = "byte-tools" | 129 | name = "byte-tools" |
122 | version = "0.3.1" | 130 | version = "0.3.1" |
123 | source = "registry+https://github.com/rust-lang/crates.io-index" | 131 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -468,7 +476,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
468 | 476 | ||
469 | [[package]] | 477 | [[package]] |
470 | name = "flexi_logger" | 478 | name = "flexi_logger" |
471 | version = "0.14.0" | 479 | version = "0.14.1" |
472 | source = "registry+https://github.com/rust-lang/crates.io-index" | 480 | source = "registry+https://github.com/rust-lang/crates.io-index" |
473 | dependencies = [ | 481 | dependencies = [ |
474 | "chrono 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", | 482 | "chrono 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -479,6 +487,11 @@ dependencies = [ | |||
479 | ] | 487 | ] |
480 | 488 | ||
481 | [[package]] | 489 | [[package]] |
490 | name = "fnv" | ||
491 | version = "1.0.6" | ||
492 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
493 | |||
494 | [[package]] | ||
482 | name = "format-buf" | 495 | name = "format-buf" |
483 | version = "1.0.0" | 496 | version = "1.0.0" |
484 | source = "registry+https://github.com/rust-lang/crates.io-index" | 497 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -537,7 +550,7 @@ name = "gen_lsp_server" | |||
537 | version = "0.2.0" | 550 | version = "0.2.0" |
538 | dependencies = [ | 551 | dependencies = [ |
539 | "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", | 552 | "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", |
540 | "flexi_logger 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", | 553 | "flexi_logger 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", |
541 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 554 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", |
542 | "lsp-types 0.59.0 (registry+https://github.com/rust-lang/crates.io-index)", | 555 | "lsp-types 0.59.0 (registry+https://github.com/rust-lang/crates.io-index)", |
543 | "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", | 556 | "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -554,7 +567,7 @@ dependencies = [ | |||
554 | 567 | ||
555 | [[package]] | 568 | [[package]] |
556 | name = "getrandom" | 569 | name = "getrandom" |
557 | version = "0.1.7" | 570 | version = "0.1.8" |
558 | source = "registry+https://github.com/rust-lang/crates.io-index" | 571 | source = "registry+https://github.com/rust-lang/crates.io-index" |
559 | dependencies = [ | 572 | dependencies = [ |
560 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", | 573 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -572,6 +585,18 @@ version = "0.3.0" | |||
572 | source = "registry+https://github.com/rust-lang/crates.io-index" | 585 | source = "registry+https://github.com/rust-lang/crates.io-index" |
573 | 586 | ||
574 | [[package]] | 587 | [[package]] |
588 | name = "globset" | ||
589 | version = "0.4.4" | ||
590 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
591 | dependencies = [ | ||
592 | "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
593 | "bstr 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
594 | "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
595 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
596 | "regex 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
597 | ] | ||
598 | |||
599 | [[package]] | ||
575 | name = "heck" | 600 | name = "heck" |
576 | version = "0.3.1" | 601 | version = "0.3.1" |
577 | source = "registry+https://github.com/rust-lang/crates.io-index" | 602 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1145,6 +1170,7 @@ dependencies = [ | |||
1145 | "ra_ide_api 0.1.0", | 1170 | "ra_ide_api 0.1.0", |
1146 | "ra_project_model 0.1.0", | 1171 | "ra_project_model 0.1.0", |
1147 | "ra_vfs 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1172 | "ra_vfs 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", |
1173 | "ra_vfs_glob 0.1.0", | ||
1148 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1174 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1149 | ] | 1175 | ] |
1150 | 1176 | ||
@@ -1153,7 +1179,7 @@ name = "ra_cli" | |||
1153 | version = "0.1.0" | 1179 | version = "0.1.0" |
1154 | dependencies = [ | 1180 | dependencies = [ |
1155 | "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1181 | "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1156 | "flexi_logger 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1182 | "flexi_logger 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1157 | "indicatif 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1183 | "indicatif 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1158 | "ra_batch 0.1.0", | 1184 | "ra_batch 0.1.0", |
1159 | "ra_db 0.1.0", | 1185 | "ra_db 0.1.0", |
@@ -1239,7 +1265,7 @@ name = "ra_lsp_server" | |||
1239 | version = "0.1.0" | 1265 | version = "0.1.0" |
1240 | dependencies = [ | 1266 | dependencies = [ |
1241 | "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", | 1267 | "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", |
1242 | "flexi_logger 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1268 | "flexi_logger 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1243 | "gen_lsp_server 0.2.0", | 1269 | "gen_lsp_server 0.2.0", |
1244 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1270 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", |
1245 | "lsp-types 0.59.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1271 | "lsp-types 0.59.0 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -1250,6 +1276,7 @@ dependencies = [ | |||
1250 | "ra_syntax 0.1.0", | 1276 | "ra_syntax 0.1.0", |
1251 | "ra_text_edit 0.1.0", | 1277 | "ra_text_edit 0.1.0", |
1252 | "ra_vfs 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1278 | "ra_vfs 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", |
1279 | "ra_vfs_glob 0.1.0", | ||
1253 | "relative-path 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1280 | "relative-path 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1254 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1281 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1255 | "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", | 1282 | "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -1301,7 +1328,6 @@ dependencies = [ | |||
1301 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1328 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", |
1302 | "ra_arena 0.1.0", | 1329 | "ra_arena 0.1.0", |
1303 | "ra_db 0.1.0", | 1330 | "ra_db 0.1.0", |
1304 | "relative-path 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1305 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1331 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1306 | "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", | 1332 | "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", |
1307 | "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", | 1333 | "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -1370,6 +1396,14 @@ dependencies = [ | |||
1370 | ] | 1396 | ] |
1371 | 1397 | ||
1372 | [[package]] | 1398 | [[package]] |
1399 | name = "ra_vfs_glob" | ||
1400 | version = "0.1.0" | ||
1401 | dependencies = [ | ||
1402 | "globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1403 | "ra_vfs 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1404 | ] | ||
1405 | |||
1406 | [[package]] | ||
1373 | name = "rand" | 1407 | name = "rand" |
1374 | version = "0.6.5" | 1408 | version = "0.6.5" |
1375 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1409 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1377,7 +1411,7 @@ dependencies = [ | |||
1377 | "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1411 | "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", |
1378 | "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", | 1412 | "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", |
1379 | "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1413 | "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1380 | "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1414 | "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", |
1381 | "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1415 | "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1382 | "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1416 | "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1383 | "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 1417 | "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -1392,7 +1426,7 @@ name = "rand" | |||
1392 | version = "0.7.0" | 1426 | version = "0.7.0" |
1393 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1427 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1394 | dependencies = [ | 1428 | dependencies = [ |
1395 | "getrandom 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 1429 | "getrandom 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", |
1396 | "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", | 1430 | "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", |
1397 | "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1431 | "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1398 | "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1432 | "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -1423,12 +1457,12 @@ name = "rand_core" | |||
1423 | version = "0.3.1" | 1457 | version = "0.3.1" |
1424 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1458 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1425 | dependencies = [ | 1459 | dependencies = [ |
1426 | "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1460 | "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", |
1427 | ] | 1461 | ] |
1428 | 1462 | ||
1429 | [[package]] | 1463 | [[package]] |
1430 | name = "rand_core" | 1464 | name = "rand_core" |
1431 | version = "0.4.0" | 1465 | version = "0.4.2" |
1432 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1466 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1433 | 1467 | ||
1434 | [[package]] | 1468 | [[package]] |
@@ -1436,7 +1470,7 @@ name = "rand_core" | |||
1436 | version = "0.5.0" | 1470 | version = "0.5.0" |
1437 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1471 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1438 | dependencies = [ | 1472 | dependencies = [ |
1439 | "getrandom 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 1473 | "getrandom 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", |
1440 | ] | 1474 | ] |
1441 | 1475 | ||
1442 | [[package]] | 1476 | [[package]] |
@@ -1469,7 +1503,7 @@ version = "0.1.4" | |||
1469 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1503 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1470 | dependencies = [ | 1504 | dependencies = [ |
1471 | "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", | 1505 | "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", |
1472 | "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1506 | "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", |
1473 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", | 1507 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", |
1474 | ] | 1508 | ] |
1475 | 1509 | ||
@@ -1481,7 +1515,7 @@ dependencies = [ | |||
1481 | "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | 1515 | "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", |
1482 | "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1516 | "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1483 | "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", | 1517 | "libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)", |
1484 | "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1518 | "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", |
1485 | "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1519 | "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1486 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", | 1520 | "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", |
1487 | ] | 1521 | ] |
@@ -1492,7 +1526,7 @@ version = "0.1.2" | |||
1492 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1526 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1493 | dependencies = [ | 1527 | dependencies = [ |
1494 | "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1528 | "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", |
1495 | "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1529 | "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", |
1496 | ] | 1530 | ] |
1497 | 1531 | ||
1498 | [[package]] | 1532 | [[package]] |
@@ -2116,6 +2150,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
2116 | "checksum bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd" | 2150 | "checksum bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd" |
2117 | "checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" | 2151 | "checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" |
2118 | "checksum block-padding 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4dc3af3ee2e12f3e5d224e5e1e3d73668abbeb69e566d361f7d5563a4fdf09" | 2152 | "checksum block-padding 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4dc3af3ee2e12f3e5d224e5e1e3d73668abbeb69e566d361f7d5563a4fdf09" |
2153 | "checksum bstr 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "e0a692f1c740e7e821ca71a22cf99b9b2322dfa94d10f71443befb1797b3946a" | ||
2119 | "checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" | 2154 | "checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" |
2120 | "checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" | 2155 | "checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" |
2121 | "checksum c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7d64d04786e0f528460fc884753cf8dddcc466be308f6026f8e355c41a0e4101" | 2156 | "checksum c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7d64d04786e0f528460fc884753cf8dddcc466be308f6026f8e355c41a0e4101" |
@@ -2157,7 +2192,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
2157 | "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" | 2192 | "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" |
2158 | "checksum filetime 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "2f8c63033fcba1f51ef744505b3cad42510432b904c062afa67ad7ece008429d" | 2193 | "checksum filetime 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "2f8c63033fcba1f51ef744505b3cad42510432b904c062afa67ad7ece008429d" |
2159 | "checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33" | 2194 | "checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33" |
2160 | "checksum flexi_logger 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2c33205472cdf9f0626ff7c058d4b9cbef51673ceaf1169e54d4be49133cbab2" | 2195 | "checksum flexi_logger 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2be2727ae1f60711d1991788605245e70cc500bd1d92edb909af160634e1a869" |
2196 | "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" | ||
2161 | "checksum format-buf 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f7aea5a5909a74969507051a3b17adc84737e31a5f910559892aedce026f4d53" | 2197 | "checksum format-buf 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f7aea5a5909a74969507051a3b17adc84737e31a5f910559892aedce026f4d53" |
2162 | "checksum fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5f2a4a2034423744d2cc7ca2068453168dcdb82c438419e639a26bd87839c674" | 2198 | "checksum fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5f2a4a2034423744d2cc7ca2068453168dcdb82c438419e639a26bd87839c674" |
2163 | "checksum fsevent 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6" | 2199 | "checksum fsevent 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6" |
@@ -2167,9 +2203,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
2167 | "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" | 2203 | "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" |
2168 | "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" | 2204 | "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" |
2169 | "checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec" | 2205 | "checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec" |
2170 | "checksum getrandom 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "cd8e190892c840661957ba9f32dacfb3eb405e657f9f9f60485605f0bb37d6f8" | 2206 | "checksum getrandom 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "34f33de6f0ae7c9cb5e574502a562e2b512799e32abb801cd1e79ad952b62b49" |
2171 | "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" | 2207 | "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" |
2172 | "checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" | 2208 | "checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" |
2209 | "checksum globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "925aa2cac82d8834e2b2a4415b6f6879757fb5c0928fc445ae76461a12eed8f2" | ||
2173 | "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" | 2210 | "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" |
2174 | "checksum humansize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6cab2627acfc432780848602f3f558f7e9dd427352224b0d9324025796d2a5e" | 2211 | "checksum humansize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6cab2627acfc432780848602f3f558f7e9dd427352224b0d9324025796d2a5e" |
2175 | "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" | 2212 | "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" |
@@ -2239,7 +2276,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
2239 | "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" | 2276 | "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" |
2240 | "checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" | 2277 | "checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" |
2241 | "checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" | 2278 | "checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" |
2242 | "checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0" | 2279 | "checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" |
2243 | "checksum rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "615e683324e75af5d43d8f7a39ffe3ee4a9dc42c5c701167a71dc59c3a493aca" | 2280 | "checksum rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "615e683324e75af5d43d8f7a39ffe3ee4a9dc42c5c701167a71dc59c3a493aca" |
2244 | "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" | 2281 | "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" |
2245 | "checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" | 2282 | "checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" |