diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-01-11 10:21:41 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-01-11 10:21:41 +0000 |
commit | dd122145b57513cf57076ae3235d70215b226039 (patch) | |
tree | 3f01166b8148b0703a6318662bbd93c51a2aa3e8 /crates/ra_syntax/Cargo.toml | |
parent | 28559b7dd2e2c101c4b7f2c9bb207b3af94f6e16 (diff) | |
parent | 66d7adf1cbbe727bfdef6db3fbf8d15bc0e747df (diff) |
Merge #493
493: force serde in ra_syntax r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_syntax/Cargo.toml')
-rw-r--r-- | crates/ra_syntax/Cargo.toml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/crates/ra_syntax/Cargo.toml b/crates/ra_syntax/Cargo.toml index 7c8e5b696..d5b4a4a77 100644 --- a/crates/ra_syntax/Cargo.toml +++ b/crates/ra_syntax/Cargo.toml | |||
@@ -14,7 +14,12 @@ itertools = "0.8.0" | |||
14 | drop_bomb = "0.1.4" | 14 | drop_bomb = "0.1.4" |
15 | parking_lot = "0.7.0" | 15 | parking_lot = "0.7.0" |
16 | rowan = "0.2.0" | 16 | rowan = "0.2.0" |
17 | text_unit = "0.1.6" | 17 | |
18 | # ideally, `serde` should be enabled by `ra_lsp_serder`, but we enable it here | ||
19 | # to reduce number of compilations | ||
20 | text_unit = { version = "0.1.6", features = ["serde"] } | ||
21 | smol_str = { version = "0.1.9", features = ["serde"] } | ||
22 | |||
18 | ra_text_edit = { path = "../ra_text_edit" } | 23 | ra_text_edit = { path = "../ra_text_edit" } |
19 | 24 | ||
20 | [dev-dependencies] | 25 | [dev-dependencies] |