aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-02-17 18:03:03 +0000
committerAleksey Kladov <[email protected]>2020-02-17 18:03:03 +0000
commit659b0e73cfd9ef7755d032f90622a08576f1d86d (patch)
tree238a2cb3e021502608d357785ebbe3b21f94573f /Cargo.lock
parent2d1b3da5fb69d932c65884a361ec10d81e8a51d8 (diff)
Merge cli and ra_lsp_server
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock32
1 files changed, 8 insertions, 24 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 82f910c1b..ccdcfbee3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -942,30 +942,6 @@ dependencies = [
942] 942]
943 943
944[[package]] 944[[package]]
945name = "ra_cli"
946version = "0.1.0"
947dependencies = [
948 "anyhow",
949 "crossbeam-channel",
950 "env_logger",
951 "itertools",
952 "log",
953 "pico-args",
954 "ra_db",
955 "ra_hir",
956 "ra_hir_def",
957 "ra_hir_ty",
958 "ra_ide",
959 "ra_prof",
960 "ra_project_model",
961 "ra_syntax",
962 "ra_vfs",
963 "ra_vfs_glob",
964 "rand",
965 "rustc-hash",
966]
967
968[[package]]
969name = "ra_db" 945name = "ra_db"
970version = "0.1.0" 946version = "0.1.0"
971dependencies = [ 947dependencies = [
@@ -1122,15 +1098,22 @@ dependencies = [
1122name = "ra_lsp_server" 1098name = "ra_lsp_server"
1123version = "0.1.0" 1099version = "0.1.0"
1124dependencies = [ 1100dependencies = [
1101 "anyhow",
1125 "crossbeam-channel", 1102 "crossbeam-channel",
1126 "either", 1103 "either",
1127 "env_logger", 1104 "env_logger",
1105 "itertools",
1128 "jod-thread", 1106 "jod-thread",
1129 "log", 1107 "log",
1130 "lsp-server", 1108 "lsp-server",
1131 "lsp-types", 1109 "lsp-types",
1132 "parking_lot", 1110 "parking_lot",
1111 "pico-args",
1133 "ra_cargo_watch", 1112 "ra_cargo_watch",
1113 "ra_db",
1114 "ra_hir",
1115 "ra_hir_def",
1116 "ra_hir_ty",
1134 "ra_ide", 1117 "ra_ide",
1135 "ra_prof", 1118 "ra_prof",
1136 "ra_project_model", 1119 "ra_project_model",
@@ -1138,6 +1121,7 @@ dependencies = [
1138 "ra_text_edit", 1121 "ra_text_edit",
1139 "ra_vfs", 1122 "ra_vfs",
1140 "ra_vfs_glob", 1123 "ra_vfs_glob",
1124 "rand",
1141 "relative-path", 1125 "relative-path",
1142 "rustc-hash", 1126 "rustc-hash",
1143 "serde", 1127 "serde",