aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorChetan Khilosiya <[email protected]>2021-02-22 18:47:48 +0000
committerChetan Khilosiya <[email protected]>2021-02-22 19:29:16 +0000
commite4756cb4f6e66097638b9d101589358976be2ba8 (patch)
treeb6ca0ae6b45b57834476ae0f9985cec3a6bd9090 /Cargo.lock
parent8687053b118f47ce1a4962d0baa19b22d40d2758 (diff)
7526: Rename crate assists to ide_assists.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock36
1 files changed, 18 insertions, 18 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f047b4508..477440f5f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -54,23 +54,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
54checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 54checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
55 55
56[[package]] 56[[package]]
57name = "assists"
58version = "0.0.0"
59dependencies = [
60 "either",
61 "expect-test",
62 "hir",
63 "ide_db",
64 "itertools 0.10.0",
65 "profile",
66 "rustc-hash",
67 "stdx",
68 "syntax",
69 "test_utils",
70 "text_edit",
71]
72
73[[package]]
74name = "atty" 57name = "atty"
75version = "0.2.14" 58version = "0.2.14"
76source = "registry+https://github.com/rust-lang/crates.io-index" 59source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -602,11 +585,11 @@ dependencies = [
602name = "ide" 585name = "ide"
603version = "0.0.0" 586version = "0.0.0"
604dependencies = [ 587dependencies = [
605 "assists",
606 "cfg", 588 "cfg",
607 "either", 589 "either",
608 "expect-test", 590 "expect-test",
609 "hir", 591 "hir",
592 "ide_assists",
610 "ide_completion", 593 "ide_completion",
611 "ide_db", 594 "ide_db",
612 "indexmap", 595 "indexmap",
@@ -626,6 +609,23 @@ dependencies = [
626] 609]
627 610
628[[package]] 611[[package]]
612name = "ide_assists"
613version = "0.0.0"
614dependencies = [
615 "either",
616 "expect-test",
617 "hir",
618 "ide_db",
619 "itertools 0.10.0",
620 "profile",
621 "rustc-hash",
622 "stdx",
623 "syntax",
624 "test_utils",
625 "text_edit",
626]
627
628[[package]]
629name = "ide_completion" 629name = "ide_completion"
630version = "0.0.0" 630version = "0.0.0"
631dependencies = [ 631dependencies = [