diff options
Diffstat (limited to 'crates/ra_syntax')
-rw-r--r-- | crates/ra_syntax/Cargo.toml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/crates/ra_syntax/Cargo.toml b/crates/ra_syntax/Cargo.toml index 1c0b184e1..b6ebb129d 100644 --- a/crates/ra_syntax/Cargo.toml +++ b/crates/ra_syntax/Cargo.toml | |||
@@ -18,13 +18,14 @@ rustc-hash = "1.0.1" | |||
18 | arrayvec = "0.5.1" | 18 | arrayvec = "0.5.1" |
19 | once_cell = "1.2.0" | 19 | once_cell = "1.2.0" |
20 | 20 | ||
21 | ra_text_edit = { path = "../ra_text_edit" } | ||
22 | ra_parser = { path = "../ra_parser" } | ||
23 | |||
21 | # This crate transitively depends on `smol_str` via `rowan`. | 24 | # This crate transitively depends on `smol_str` via `rowan`. |
22 | # ideally, `serde` should be enabled by `ra_lsp_server`, but we enable it here | 25 | # ideally, `serde` should be enabled by `ra_lsp_server`, but we enable it here |
23 | # to reduce number of compilations | 26 | # to reduce number of compilations |
24 | smol_str = { version = "0.1.12", features = ["serde"] } | 27 | smol_str = { version = "0.1.12", features = ["serde"] } |
25 | 28 | serde = { version = "1", features = ["derive"] } | |
26 | ra_text_edit = { path = "../ra_text_edit" } | ||
27 | ra_parser = { path = "../ra_parser" } | ||
28 | 29 | ||
29 | [dev-dependencies] | 30 | [dev-dependencies] |
30 | test_utils = { path = "../test_utils" } | 31 | test_utils = { path = "../test_utils" } |