diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index c6ed5107c..42a962cf6 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -351,6 +351,11 @@ version = "1.1.0" | |||
351 | source = "registry+https://github.com/rust-lang/crates.io-index" | 351 | source = "registry+https://github.com/rust-lang/crates.io-index" |
352 | 352 | ||
353 | [[package]] | 353 | [[package]] |
354 | name = "id-arena" | ||
355 | version = "2.0.0" | ||
356 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
357 | |||
358 | [[package]] | ||
354 | name = "idna" | 359 | name = "idna" |
355 | version = "0.1.5" | 360 | version = "0.1.5" |
356 | source = "registry+https://github.com/rust-lang/crates.io-index" | 361 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -601,7 +606,9 @@ dependencies = [ | |||
601 | "fst 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", | 606 | "fst 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", |
602 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | 607 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", |
603 | "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", | 608 | "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", |
609 | "ra_db 0.1.0", | ||
604 | "ra_editor 0.1.0", | 610 | "ra_editor 0.1.0", |
611 | "ra_hir 0.1.0", | ||
605 | "ra_syntax 0.1.0", | 612 | "ra_syntax 0.1.0", |
606 | "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | 613 | "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", |
607 | "relative-path 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 614 | "relative-path 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -623,6 +630,19 @@ dependencies = [ | |||
623 | ] | 630 | ] |
624 | 631 | ||
625 | [[package]] | 632 | [[package]] |
633 | name = "ra_db" | ||
634 | version = "0.1.0" | ||
635 | dependencies = [ | ||
636 | "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
637 | "ra_editor 0.1.0", | ||
638 | "ra_syntax 0.1.0", | ||
639 | "relative-path 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
640 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
641 | "salsa 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
642 | "test_utils 0.1.0", | ||
643 | ] | ||
644 | |||
645 | [[package]] | ||
626 | name = "ra_editor" | 646 | name = "ra_editor" |
627 | version = "0.1.0" | 647 | version = "0.1.0" |
628 | dependencies = [ | 648 | dependencies = [ |
@@ -635,6 +655,22 @@ dependencies = [ | |||
635 | ] | 655 | ] |
636 | 656 | ||
637 | [[package]] | 657 | [[package]] |
658 | name = "ra_hir" | ||
659 | version = "0.1.0" | ||
660 | dependencies = [ | ||
661 | "id-arena 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
662 | "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
663 | "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
664 | "ra_db 0.1.0", | ||
665 | "ra_editor 0.1.0", | ||
666 | "ra_syntax 0.1.0", | ||
667 | "relative-path 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
668 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
669 | "salsa 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
670 | "test_utils 0.1.0", | ||
671 | ] | ||
672 | |||
673 | [[package]] | ||
638 | name = "ra_lsp_server" | 674 | name = "ra_lsp_server" |
639 | version = "0.1.0" | 675 | version = "0.1.0" |
640 | dependencies = [ | 676 | dependencies = [ |
@@ -1301,6 +1337,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1301 | "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" | 1337 | "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" |
1302 | "checksum heck 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ea04fa3ead4e05e51a7c806fc07271fdbde4e246a6c6d1efd52e72230b771b82" | 1338 | "checksum heck 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ea04fa3ead4e05e51a7c806fc07271fdbde4e246a6c6d1efd52e72230b771b82" |
1303 | "checksum humansize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6cab2627acfc432780848602f3f558f7e9dd427352224b0d9324025796d2a5e" | 1339 | "checksum humansize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6cab2627acfc432780848602f3f558f7e9dd427352224b0d9324025796d2a5e" |
1340 | "checksum id-arena 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3a7250033feafee46a1cecd2c2616a64aec1d064f38c9ae2bdd297728542843e" | ||
1304 | "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" | 1341 | "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" |
1305 | "checksum im 12.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ae9c7f9bb8aee47fc16d535a705f7867a9fc83bb822e5e1043bb98e77ffeed3c" | 1342 | "checksum im 12.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ae9c7f9bb8aee47fc16d535a705f7867a9fc83bb822e5e1043bb98e77ffeed3c" |
1306 | "checksum indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d" | 1343 | "checksum indexmap 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d" |