949: Specify derive feature for serde r=matklad a=pcpthm

`ra_project_model` build will fail when no dependencies are using this feature. Reproduced by creating a crate depending on `ra_batch`.

Co-authored-by: pcpthm <pcpthm@gmail.com>
This commit is contained in:
bors[bot] 2019-03-07 17:23:59 +00:00
commit f8f24cb869
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ relative-path = "0.4.0"
failure = "0.1.4"
failure_derive = "0.1.4"
serde_json = "1.0.34"
serde = "1.0.83"
serde = { version = "1.0.83", features = ["derive"] }
crossbeam-channel = "0.3.5"
flexi_logger = "0.11.0"
log = "0.4.3"

View File

@ -17,7 +17,7 @@ cargo_metadata = "0.7.0"
ra_arena = { path = "../ra_arena" }
ra_db = { path = "../ra_db" }
serde = "1.0.89"
serde = { version = "1.0.89", features = ["derive"] }
serde_json = "1.0.39"
[dev-dependencies]