diff options
Diffstat (limited to 'crates/ra_cli/Cargo.toml')
-rw-r--r-- | crates/ra_cli/Cargo.toml | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/crates/ra_cli/Cargo.toml b/crates/ra_cli/Cargo.toml index 53d4876f6..03494a809 100644 --- a/crates/ra_cli/Cargo.toml +++ b/crates/ra_cli/Cargo.toml | |||
@@ -6,18 +6,23 @@ authors = ["rust-analyzer developers"] | |||
6 | publish = false | 6 | publish = false |
7 | 7 | ||
8 | [dependencies] | 8 | [dependencies] |
9 | crossbeam-channel = "0.4.0" | ||
10 | env_logger = { version = "0.7.1", default-features = false } | ||
9 | itertools = "0.8.0" | 11 | itertools = "0.8.0" |
12 | log = "0.4.5" | ||
10 | pico-args = "0.3.0" | 13 | pico-args = "0.3.0" |
11 | env_logger = { version = "0.7.1", default-features = false } | ||
12 | rand = { version = "0.7.0", features = ["small_rng"] } | 14 | rand = { version = "0.7.0", features = ["small_rng"] } |
15 | rustc-hash = "1.0" | ||
13 | 16 | ||
14 | ra_syntax = { path = "../ra_syntax" } | ||
15 | ra_ide = { path = "../ra_ide" } | ||
16 | ra_batch = { path = "../ra_batch" } | ||
17 | hir = { path = "../ra_hir", package = "ra_hir" } | 17 | hir = { path = "../ra_hir", package = "ra_hir" } |
18 | hir_ty = { path = "../ra_hir_ty", package = "ra_hir_ty" } | ||
19 | hir_def = { path = "../ra_hir_def", package = "ra_hir_def" } | 18 | hir_def = { path = "../ra_hir_def", package = "ra_hir_def" } |
19 | hir_ty = { path = "../ra_hir_ty", package = "ra_hir_ty" } | ||
20 | ra_db = { path = "../ra_db" } | 20 | ra_db = { path = "../ra_db" } |
21 | ra_ide = { path = "../ra_ide" } | ||
22 | ra_project_model = { path = "../ra_project_model" } | ||
23 | ra_syntax = { path = "../ra_syntax" } | ||
24 | ra_vfs = "0.5.0" | ||
25 | ra_vfs_glob = { path = "../ra_vfs_glob" } | ||
21 | 26 | ||
22 | [dependencies.ra_prof] | 27 | [dependencies.ra_prof] |
23 | path = "../ra_prof" | 28 | path = "../ra_prof" |