diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-12-12 13:12:02 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2019-12-12 13:12:02 +0000 |
commit | b2638fcd2cc847e008e1dd7f1739283813b94026 (patch) | |
tree | 190f0bfc6d46f0082010c12f34f3ed58e599561f /crates | |
parent | ca61889e40f5666a7522fed29b54a6ce0493567a (diff) | |
parent | b0739d5a26684527129882b7d182d01e635525bc (diff) |
Merge #2536
2536: Avoid recompiling serde r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates')
-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" } |