diff options
-rw-r--r-- | Cargo.lock | 7 | ||||
-rw-r--r-- | crates/ra_assists/Cargo.toml | 3 | ||||
-rw-r--r-- | crates/ra_lsp_server/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_mbe/Cargo.toml | 1 |
4 files changed, 0 insertions, 13 deletions
diff --git a/Cargo.lock b/Cargo.lock index 965d5aaa0..e3e474e83 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -891,17 +891,14 @@ version = "0.1.0" | |||
891 | name = "ra_assists" | 891 | name = "ra_assists" |
892 | version = "0.1.0" | 892 | version = "0.1.0" |
893 | dependencies = [ | 893 | dependencies = [ |
894 | "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", | ||
895 | "format-buf 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | 894 | "format-buf 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", |
896 | "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", | 895 | "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", |
897 | "join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", | 896 | "join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", |
898 | "once_cell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
899 | "ra_db 0.1.0", | 897 | "ra_db 0.1.0", |
900 | "ra_fmt 0.1.0", | 898 | "ra_fmt 0.1.0", |
901 | "ra_hir 0.1.0", | 899 | "ra_hir 0.1.0", |
902 | "ra_syntax 0.1.0", | 900 | "ra_syntax 0.1.0", |
903 | "ra_text_edit 0.1.0", | 901 | "ra_text_edit 0.1.0", |
904 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
905 | "rustc_lexer 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 902 | "rustc_lexer 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
906 | "test_utils 0.1.0", | 903 | "test_utils 0.1.0", |
907 | ] | 904 | ] |
@@ -1031,8 +1028,6 @@ dependencies = [ | |||
1031 | "lsp-server 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1028 | "lsp-server 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1032 | "lsp-types 0.61.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1029 | "lsp-types 0.61.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1033 | "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1030 | "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1034 | "ra_cfg 0.1.0", | ||
1035 | "ra_db 0.1.0", | ||
1036 | "ra_ide_api 0.1.0", | 1031 | "ra_ide_api 0.1.0", |
1037 | "ra_prof 0.1.0", | 1032 | "ra_prof 0.1.0", |
1038 | "ra_project_model 0.1.0", | 1033 | "ra_project_model 0.1.0", |
@@ -1053,7 +1048,6 @@ dependencies = [ | |||
1053 | name = "ra_mbe" | 1048 | name = "ra_mbe" |
1054 | version = "0.1.0" | 1049 | version = "0.1.0" |
1055 | dependencies = [ | 1050 | dependencies = [ |
1056 | "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1057 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1051 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", |
1058 | "ra_parser 0.1.0", | 1052 | "ra_parser 0.1.0", |
1059 | "ra_syntax 0.1.0", | 1053 | "ra_syntax 0.1.0", |
@@ -1107,7 +1101,6 @@ dependencies = [ | |||
1107 | "rowan 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", | 1101 | "rowan 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", |
1108 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1102 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1109 | "rustc_lexer 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1103 | "rustc_lexer 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1110 | "smol_str 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", | ||
1111 | "test_utils 0.1.0", | 1104 | "test_utils 0.1.0", |
1112 | "walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)", | 1105 | "walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)", |
1113 | ] | 1106 | ] |
diff --git a/crates/ra_assists/Cargo.toml b/crates/ra_assists/Cargo.toml index d3b6aeb36..beebccbd9 100644 --- a/crates/ra_assists/Cargo.toml +++ b/crates/ra_assists/Cargo.toml | |||
@@ -6,11 +6,8 @@ authors = ["rust-analyzer developers"] | |||
6 | 6 | ||
7 | [dependencies] | 7 | [dependencies] |
8 | format-buf = "1.0.0" | 8 | format-buf = "1.0.0" |
9 | once_cell = "1.0.1" | ||
10 | join_to_string = "0.1.3" | 9 | join_to_string = "0.1.3" |
11 | itertools = "0.8.0" | 10 | itertools = "0.8.0" |
12 | arrayvec = "0.4.10" | ||
13 | rustc-hash = "1.0.1" | ||
14 | rustc_lexer = "0.1.0" | 11 | rustc_lexer = "0.1.0" |
15 | 12 | ||
16 | ra_syntax = { path = "../ra_syntax" } | 13 | ra_syntax = { path = "../ra_syntax" } |
diff --git a/crates/ra_lsp_server/Cargo.toml b/crates/ra_lsp_server/Cargo.toml index aedc55a95..46a0f958c 100644 --- a/crates/ra_lsp_server/Cargo.toml +++ b/crates/ra_lsp_server/Cargo.toml | |||
@@ -18,8 +18,6 @@ parking_lot = "0.9.0" | |||
18 | jod-thread = "0.1.0" | 18 | jod-thread = "0.1.0" |
19 | ra_vfs = "0.4.0" | 19 | ra_vfs = "0.4.0" |
20 | ra_syntax = { path = "../ra_syntax" } | 20 | ra_syntax = { path = "../ra_syntax" } |
21 | ra_db = { path = "../ra_db" } | ||
22 | ra_cfg = { path = "../ra_cfg" } | ||
23 | ra_text_edit = { path = "../ra_text_edit" } | 21 | ra_text_edit = { path = "../ra_text_edit" } |
24 | ra_ide_api = { path = "../ra_ide_api" } | 22 | ra_ide_api = { path = "../ra_ide_api" } |
25 | lsp-server = "0.2.0" | 23 | lsp-server = "0.2.0" |
diff --git a/crates/ra_mbe/Cargo.toml b/crates/ra_mbe/Cargo.toml index b058dde91..e8ef2457b 100644 --- a/crates/ra_mbe/Cargo.toml +++ b/crates/ra_mbe/Cargo.toml | |||
@@ -8,7 +8,6 @@ authors = ["rust-analyzer developers"] | |||
8 | ra_syntax = { path = "../ra_syntax" } | 8 | ra_syntax = { path = "../ra_syntax" } |
9 | ra_parser = { path = "../ra_parser" } | 9 | ra_parser = { path = "../ra_parser" } |
10 | tt = { path = "../ra_tt", package = "ra_tt" } | 10 | tt = { path = "../ra_tt", package = "ra_tt" } |
11 | itertools = "0.8.0" | ||
12 | rustc-hash = "1.0.0" | 11 | rustc-hash = "1.0.0" |
13 | smallvec = "0.6.9" | 12 | smallvec = "0.6.9" |
14 | log = "0.4.5" | 13 | log = "0.4.5" |