Skip to content

Commit fee1f64

Browse files
committed
save-analysis: depend on the rls-data crate
1 parent 0aeb9c1 commit fee1f64

File tree

3 files changed

+46
-12
lines changed

3 files changed

+46
-12
lines changed

src/Cargo.lock

Lines changed: 42 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/librustc_save_analysis/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ log = { path = "../liblog" }
1313
rustc = { path = "../librustc" }
1414
syntax = { path = "../libsyntax" }
1515
serialize = { path = "../libserialize" }
16-
syntax_pos = { path = "../libsyntax_pos" }
16+
syntax_pos = { path = "../libsyntax_pos" }
17+
rls-data = { git = "https://github.com/nrc/rls-data" }

src/librustc_save_analysis/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
extern crate serialize as rustc_serialize;
3030
extern crate syntax_pos;
3131

32+
extern crate rls_data;
33+
3234

3335
mod csv_dumper;
3436
mod json_api_dumper;

0 commit comments

Comments
 (0)