aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock58
1 files changed, 29 insertions, 29 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 265889162..c2a0457c7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -46,6 +46,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
46checksum = "33954243bd79057c2de7338850b85983a44588021f8a5fee574a8888c6de4344" 46checksum = "33954243bd79057c2de7338850b85983a44588021f8a5fee574a8888c6de4344"
47 47
48[[package]] 48[[package]]
49name = "arena"
50version = "0.0.0"
51
52[[package]]
49name = "arrayvec" 53name = "arrayvec"
50version = "0.5.1" 54version = "0.5.1"
51source = "registry+https://github.com/rust-lang/crates.io-index" 55source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -891,6 +895,18 @@ dependencies = [
891] 895]
892 896
893[[package]] 897[[package]]
898name = "profile"
899version = "0.0.0"
900dependencies = [
901 "arena",
902 "backtrace",
903 "cfg-if",
904 "libc",
905 "once_cell",
906 "perf-event",
907]
908
909[[package]]
894name = "quote" 910name = "quote"
895version = "1.0.7" 911version = "1.0.7"
896source = "registry+https://github.com/rust-lang/crates.io-index" 912source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -900,20 +916,16 @@ dependencies = [
900] 916]
901 917
902[[package]] 918[[package]]
903name = "ra_arena"
904version = "0.1.0"
905
906[[package]]
907name = "ra_assists" 919name = "ra_assists"
908version = "0.1.0" 920version = "0.1.0"
909dependencies = [ 921dependencies = [
910 "either", 922 "either",
911 "itertools", 923 "itertools",
924 "profile",
912 "ra_db", 925 "ra_db",
913 "ra_fmt", 926 "ra_fmt",
914 "ra_hir", 927 "ra_hir",
915 "ra_ide_db", 928 "ra_ide_db",
916 "ra_prof",
917 "ra_syntax", 929 "ra_syntax",
918 "ra_text_edit", 930 "ra_text_edit",
919 "rustc-hash", 931 "rustc-hash",
@@ -935,8 +947,8 @@ dependencies = [
935name = "ra_db" 947name = "ra_db"
936version = "0.1.0" 948version = "0.1.0"
937dependencies = [ 949dependencies = [
950 "profile",
938 "ra_cfg", 951 "ra_cfg",
939 "ra_prof",
940 "ra_syntax", 952 "ra_syntax",
941 "ra_tt", 953 "ra_tt",
942 "rustc-hash", 954 "rustc-hash",
@@ -962,11 +974,11 @@ dependencies = [
962 "either", 974 "either",
963 "itertools", 975 "itertools",
964 "log", 976 "log",
977 "profile",
965 "ra_db", 978 "ra_db",
966 "ra_hir_def", 979 "ra_hir_def",
967 "ra_hir_expand", 980 "ra_hir_expand",
968 "ra_hir_ty", 981 "ra_hir_ty",
969 "ra_prof",
970 "ra_syntax", 982 "ra_syntax",
971 "rustc-hash", 983 "rustc-hash",
972 "stdx", 984 "stdx",
@@ -977,6 +989,7 @@ name = "ra_hir_def"
977version = "0.1.0" 989version = "0.1.0"
978dependencies = [ 990dependencies = [
979 "anymap", 991 "anymap",
992 "arena",
980 "drop_bomb", 993 "drop_bomb",
981 "either", 994 "either",
982 "expect", 995 "expect",
@@ -985,12 +998,11 @@ dependencies = [
985 "itertools", 998 "itertools",
986 "log", 999 "log",
987 "once_cell", 1000 "once_cell",
988 "ra_arena", 1001 "profile",
989 "ra_cfg", 1002 "ra_cfg",
990 "ra_db", 1003 "ra_db",
991 "ra_hir_expand", 1004 "ra_hir_expand",
992 "ra_mbe", 1005 "ra_mbe",
993 "ra_prof",
994 "ra_syntax", 1006 "ra_syntax",
995 "ra_tt", 1007 "ra_tt",
996 "rustc-hash", 1008 "rustc-hash",
@@ -1003,13 +1015,13 @@ dependencies = [
1003name = "ra_hir_expand" 1015name = "ra_hir_expand"
1004version = "0.1.0" 1016version = "0.1.0"
1005dependencies = [ 1017dependencies = [
1018 "arena",
1006 "either", 1019 "either",
1007 "log", 1020 "log",
1008 "ra_arena", 1021 "profile",
1009 "ra_db", 1022 "ra_db",
1010 "ra_mbe", 1023 "ra_mbe",
1011 "ra_parser", 1024 "ra_parser",
1012 "ra_prof",
1013 "ra_syntax", 1025 "ra_syntax",
1014 "ra_tt", 1026 "ra_tt",
1015 "rustc-hash", 1027 "rustc-hash",
@@ -1020,6 +1032,7 @@ dependencies = [
1020name = "ra_hir_ty" 1032name = "ra_hir_ty"
1021version = "0.1.0" 1033version = "0.1.0"
1022dependencies = [ 1034dependencies = [
1035 "arena",
1023 "arrayvec", 1036 "arrayvec",
1024 "chalk-ir", 1037 "chalk-ir",
1025 "chalk-recursive", 1038 "chalk-recursive",
@@ -1028,11 +1041,10 @@ dependencies = [
1028 "expect", 1041 "expect",
1029 "itertools", 1042 "itertools",
1030 "log", 1043 "log",
1031 "ra_arena", 1044 "profile",
1032 "ra_db", 1045 "ra_db",
1033 "ra_hir_def", 1046 "ra_hir_def",
1034 "ra_hir_expand", 1047 "ra_hir_expand",
1035 "ra_prof",
1036 "ra_syntax", 1048 "ra_syntax",
1037 "rustc-hash", 1049 "rustc-hash",
1038 "scoped-tls", 1050 "scoped-tls",
@@ -1054,13 +1066,13 @@ dependencies = [
1054 "itertools", 1066 "itertools",
1055 "log", 1067 "log",
1056 "oorandom", 1068 "oorandom",
1069 "profile",
1057 "ra_assists", 1070 "ra_assists",
1058 "ra_cfg", 1071 "ra_cfg",
1059 "ra_db", 1072 "ra_db",
1060 "ra_fmt", 1073 "ra_fmt",
1061 "ra_hir", 1074 "ra_hir",
1062 "ra_ide_db", 1075 "ra_ide_db",
1063 "ra_prof",
1064 "ra_ssr", 1076 "ra_ssr",
1065 "ra_syntax", 1077 "ra_syntax",
1066 "ra_text_edit", 1078 "ra_text_edit",
@@ -1077,9 +1089,9 @@ dependencies = [
1077 "fst", 1089 "fst",
1078 "log", 1090 "log",
1079 "once_cell", 1091 "once_cell",
1092 "profile",
1080 "ra_db", 1093 "ra_db",
1081 "ra_hir", 1094 "ra_hir",
1082 "ra_prof",
1083 "ra_syntax", 1095 "ra_syntax",
1084 "ra_text_edit", 1096 "ra_text_edit",
1085 "rayon", 1097 "rayon",
@@ -1138,26 +1150,14 @@ dependencies = [
1138] 1150]
1139 1151
1140[[package]] 1152[[package]]
1141name = "ra_prof"
1142version = "0.1.0"
1143dependencies = [
1144 "backtrace",
1145 "cfg-if",
1146 "libc",
1147 "once_cell",
1148 "perf-event",
1149 "ra_arena",
1150]
1151
1152[[package]]
1153name = "ra_project_model" 1153name = "ra_project_model"
1154version = "0.1.0" 1154version = "0.1.0"
1155dependencies = [ 1155dependencies = [
1156 "anyhow", 1156 "anyhow",
1157 "arena",
1157 "cargo_metadata", 1158 "cargo_metadata",
1158 "log", 1159 "log",
1159 "paths", 1160 "paths",
1160 "ra_arena",
1161 "ra_cfg", 1161 "ra_cfg",
1162 "ra_db", 1162 "ra_db",
1163 "ra_proc_macro", 1163 "ra_proc_macro",
@@ -1314,6 +1314,7 @@ dependencies = [
1314 "oorandom", 1314 "oorandom",
1315 "parking_lot", 1315 "parking_lot",
1316 "pico-args", 1316 "pico-args",
1317 "profile",
1317 "ra_cfg", 1318 "ra_cfg",
1318 "ra_db", 1319 "ra_db",
1319 "ra_hir", 1320 "ra_hir",
@@ -1323,7 +1324,6 @@ dependencies = [
1323 "ra_ide_db", 1324 "ra_ide_db",
1324 "ra_mbe", 1325 "ra_mbe",
1325 "ra_proc_macro_srv", 1326 "ra_proc_macro_srv",
1326 "ra_prof",
1327 "ra_project_model", 1327 "ra_project_model",
1328 "ra_ssr", 1328 "ra_ssr",
1329 "ra_syntax", 1329 "ra_syntax",