Enable serde feature in ra_syntax/Cargo.toml

This commit is contained in:
Shotaro Yamada 2019-10-14 19:56:29 +09:00
parent 5ca6281164
commit e4ffa79b3e

View file

@ -15,6 +15,11 @@ rustc-hash = "1.0.1"
arrayvec = "0.4.10"
once_cell = "1.2.0"
# This crate transitively depends on `smol_str` via `rowan`.
# ideally, `serde` should be enabled by `ra_lsp_server`, but we enable it here
# to reduce number of compilations
smol_str = { version = "0.1.12", features = ["serde"] }
ra_text_edit = { path = "../ra_text_edit" }
ra_parser = { path = "../ra_parser" }