aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorIgor Aleksanov <[email protected]>2020-10-18 11:09:00 +0100
committerIgor Aleksanov <[email protected]>2020-10-18 11:09:00 +0100
commit9e7c952bbddc2e6763c49f0511a295362e9893d6 (patch)
tree5b144eabe1eaf62aa1ec5b804ee6fff00f5f84e9 /Cargo.lock
parent2067a410f31810f6e1941a86cdea0247c3b7d6f4 (diff)
Extract call_info and completion into separate crates
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock36
1 files changed, 36 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c724d1348..fa08b6152 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -128,6 +128,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
128checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" 128checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
129 129
130[[package]] 130[[package]]
131name = "call_info"
132version = "0.0.0"
133dependencies = [
134 "base_db",
135 "either",
136 "expect-test",
137 "hir",
138 "ide_db",
139 "stdx",
140 "syntax",
141 "test_utils",
142]
143
144[[package]]
131name = "cargo_metadata" 145name = "cargo_metadata"
132version = "0.11.4" 146version = "0.11.4"
133source = "registry+https://github.com/rust-lang/crates.io-index" 147source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -250,6 +264,26 @@ dependencies = [
250] 264]
251 265
252[[package]] 266[[package]]
267name = "completion"
268version = "0.0.0"
269dependencies = [
270 "assists",
271 "base_db",
272 "call_info",
273 "expect-test",
274 "hir",
275 "ide_db",
276 "itertools",
277 "log",
278 "profile",
279 "rustc-hash",
280 "stdx",
281 "syntax",
282 "test_utils",
283 "text_edit",
284]
285
286[[package]]
253name = "const_fn" 287name = "const_fn"
254version = "0.4.2" 288version = "0.4.2"
255source = "registry+https://github.com/rust-lang/crates.io-index" 289source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -609,7 +643,9 @@ version = "0.0.0"
609dependencies = [ 643dependencies = [
610 "assists", 644 "assists",
611 "base_db", 645 "base_db",
646 "call_info",
612 "cfg", 647 "cfg",
648 "completion",
613 "either", 649 "either",
614 "expect-test", 650 "expect-test",
615 "hir", 651 "hir",