aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_project_model
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-03-07 17:23:59 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-03-07 17:23:59 +0000
commitf8f24cb869cd5755d3de77ed3782741761f99e18 (patch)
tree51e5ea9bc282ab6552ba8bfa6bc8e91810406715 /crates/ra_project_model
parent711b82a7019bfc7be95b05afe022e6c9a6c08e64 (diff)
parentd4108cdd609e56137d67c4af07825f664ac3ffc3 (diff)
Merge #949
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 <[email protected]>
Diffstat (limited to 'crates/ra_project_model')
-rw-r--r--crates/ra_project_model/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_project_model/Cargo.toml b/crates/ra_project_model/Cargo.toml
index 487cdfaf1..34d33531e 100644
--- a/crates/ra_project_model/Cargo.toml
+++ b/crates/ra_project_model/Cargo.toml
@@ -17,7 +17,7 @@ cargo_metadata = "0.7.0"
17ra_arena = { path = "../ra_arena" } 17ra_arena = { path = "../ra_arena" }
18ra_db = { path = "../ra_db" } 18ra_db = { path = "../ra_db" }
19 19
20serde = "1.0.89" 20serde = { version = "1.0.89", features = ["derive"] }
21serde_json = "1.0.39" 21serde_json = "1.0.39"
22 22
23[dev-dependencies] 23[dev-dependencies]