diff options
author | Shotaro Yamada <[email protected]> | 2019-10-14 11:56:29 +0100 |
---|---|---|
committer | Shotaro Yamada <[email protected]> | 2019-10-14 11:56:29 +0100 |
commit | e4ffa79b3eb6e5bfc0c216d7af3811c56caf2101 (patch) | |
tree | a4eae4d871886e1fc0609a8ffeb96fccbf1f7580 /crates/ra_syntax | |
parent | 5ca6281164d73da7c9b22650ea7d80077908ffbf (diff) |
Enable `serde` feature in ra_syntax/Cargo.toml
Diffstat (limited to 'crates/ra_syntax')
-rw-r--r-- | crates/ra_syntax/Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/crates/ra_syntax/Cargo.toml b/crates/ra_syntax/Cargo.toml index b2d87ba03..68c594202 100644 --- a/crates/ra_syntax/Cargo.toml +++ b/crates/ra_syntax/Cargo.toml | |||
@@ -15,6 +15,11 @@ rustc-hash = "1.0.1" | |||
15 | arrayvec = "0.4.10" | 15 | arrayvec = "0.4.10" |
16 | once_cell = "1.2.0" | 16 | once_cell = "1.2.0" |
17 | 17 | ||
18 | # This crate transitively depends on `smol_str` via `rowan`. | ||
19 | # ideally, `serde` should be enabled by `ra_lsp_server`, but we enable it here | ||
20 | # to reduce number of compilations | ||
21 | smol_str = { version = "0.1.12", features = ["serde"] } | ||
22 | |||
18 | ra_text_edit = { path = "../ra_text_edit" } | 23 | ra_text_edit = { path = "../ra_text_edit" } |
19 | ra_parser = { path = "../ra_parser" } | 24 | ra_parser = { path = "../ra_parser" } |
20 | 25 | ||