aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorEdwin Cheng <[email protected]>2020-04-01 06:11:26 +0100
committerEdwin Cheng <[email protected]>2020-04-03 12:01:44 +0100
commit84fb9b44c3b06e1a542608570bb6d7212c8505b7 (patch)
treee959b5bfef78d08b622e37fabdbe2f630abb7a87 /Cargo.lock
parentac91de1525662a602a1057709eb91a9b21ea3ac7 (diff)
Introduce ra_proc_macro_srv
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock63
1 files changed, 63 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c07a9614a..016044f11 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -425,6 +425,17 @@ dependencies = [
425] 425]
426 426
427[[package]] 427[[package]]
428name = "goblin"
429version = "0.2.1"
430source = "registry+https://github.com/rust-lang/crates.io-index"
431checksum = "ddd5e3132801a1ac34ac53b97acde50c4685414dd2f291b9ea52afa6f07468c8"
432dependencies = [
433 "log",
434 "plain",
435 "scroll",
436]
437
438[[package]]
428name = "heck" 439name = "heck"
429version = "0.3.1" 440version = "0.3.1"
430source = "registry+https://github.com/rust-lang/crates.io-index" 441source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -596,6 +607,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
596checksum = "dea0c0405123bba743ee3f91f49b1c7cfb684eef0da0a50110f758ccf24cdff0" 607checksum = "dea0c0405123bba743ee3f91f49b1c7cfb684eef0da0a50110f758ccf24cdff0"
597 608
598[[package]] 609[[package]]
610name = "libloading"
611version = "0.5.2"
612source = "registry+https://github.com/rust-lang/crates.io-index"
613checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753"
614dependencies = [
615 "cc",
616 "winapi 0.3.8",
617]
618
619[[package]]
599name = "linked-hash-map" 620name = "linked-hash-map"
600version = "0.5.2" 621version = "0.5.2"
601source = "registry+https://github.com/rust-lang/crates.io-index" 622source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -835,6 +856,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
835checksum = "3ad1f1b834a05d42dae330066e9699a173b28185b3bdc3dbf14ca239585de8cc" 856checksum = "3ad1f1b834a05d42dae330066e9699a173b28185b3bdc3dbf14ca239585de8cc"
836 857
837[[package]] 858[[package]]
859name = "plain"
860version = "0.2.3"
861source = "registry+https://github.com/rust-lang/crates.io-index"
862checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
863
864[[package]]
838name = "ppv-lite86" 865name = "ppv-lite86"
839version = "0.2.6" 866version = "0.2.6"
840source = "registry+https://github.com/rust-lang/crates.io-index" 867source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1084,6 +1111,22 @@ dependencies = [
1084] 1111]
1085 1112
1086[[package]] 1113[[package]]
1114name = "ra_proc_macro_srv"
1115version = "0.1.0"
1116dependencies = [
1117 "cargo_metadata",
1118 "difference",
1119 "goblin",
1120 "libloading",
1121 "ra_mbe",
1122 "ra_proc_macro",
1123 "ra_tt",
1124 "serde",
1125 "serde_derive",
1126 "serde_json",
1127]
1128
1129[[package]]
1087name = "ra_prof" 1130name = "ra_prof"
1088version = "0.1.0" 1131version = "0.1.0"
1089dependencies = [ 1132dependencies = [
@@ -1393,6 +1436,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1393checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1436checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1394 1437
1395[[package]] 1438[[package]]
1439name = "scroll"
1440version = "0.10.1"
1441source = "registry+https://github.com/rust-lang/crates.io-index"
1442checksum = "abb2332cb595d33f7edd5700f4cbf94892e680c7f0ae56adab58a35190b66cb1"
1443dependencies = [
1444 "scroll_derive",
1445]
1446
1447[[package]]
1448name = "scroll_derive"
1449version = "0.10.1"
1450source = "registry+https://github.com/rust-lang/crates.io-index"
1451checksum = "f8584eea9b9ff42825b46faf46a8c24d2cff13ec152fa2a50df788b87c07ee28"
1452dependencies = [
1453 "proc-macro2",
1454 "quote",
1455 "syn",
1456]
1457
1458[[package]]
1396name = "semver" 1459name = "semver"
1397version = "0.9.0" 1460version = "0.9.0"
1398source = "registry+https://github.com/rust-lang/crates.io-index" 1461source = "registry+https://github.com/rust-lang/crates.io-index"