aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-08-13 16:33:38 +0100
committerAleksey Kladov <[email protected]>2020-08-13 16:33:38 +0100
commitfc34403018079ea053f26d0a31b7517053c7dd8c (patch)
tree500d7c2ec2179309be12a063634cb6a77c9af845 /Cargo.lock
parentae3abd6e575940eb1221acf26c09e96352f052fa (diff)
Rename ra_assists -> 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 4d8b74839..621be0832 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -47,6 +47,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
47checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8" 47checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
48 48
49[[package]] 49[[package]]
50name = "assists"
51version = "0.0.0"
52dependencies = [
53 "base_db",
54 "either",
55 "hir",
56 "ide_db",
57 "itertools",
58 "profile",
59 "rustc-hash",
60 "stdx",
61 "syntax",
62 "test_utils",
63 "text_edit",
64]
65
66[[package]]
50name = "atty" 67name = "atty"
51version = "0.2.14" 68version = "0.2.14"
52source = "registry+https://github.com/rust-lang/crates.io-index" 69source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1103,26 +1120,10 @@ dependencies = [
1103] 1120]
1104 1121
1105[[package]] 1122[[package]]
1106name = "ra_assists"
1107version = "0.1.0"
1108dependencies = [
1109 "base_db",
1110 "either",
1111 "hir",
1112 "ide_db",
1113 "itertools",
1114 "profile",
1115 "rustc-hash",
1116 "stdx",
1117 "syntax",
1118 "test_utils",
1119 "text_edit",
1120]
1121
1122[[package]]
1123name = "ra_ide" 1123name = "ra_ide"
1124version = "0.1.0" 1124version = "0.1.0"
1125dependencies = [ 1125dependencies = [
1126 "assists",
1126 "base_db", 1127 "base_db",
1127 "cfg", 1128 "cfg",
1128 "either", 1129 "either",
@@ -1134,7 +1135,6 @@ dependencies = [
1134 "log", 1135 "log",
1135 "oorandom", 1136 "oorandom",
1136 "profile", 1137 "profile",
1137 "ra_assists",
1138 "rustc-hash", 1138 "rustc-hash",
1139 "ssr", 1139 "ssr",
1140 "stdx", 1140 "stdx",