]> git.lizzy.rs Git - rust.git/blob - src/librustc_save_analysis/Cargo.toml
save-analysis: Use serde instead of libserialize to dump JSON data
[rust.git] / src / librustc_save_analysis / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_save_analysis"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_save_analysis"
9 path = "lib.rs"
10 crate-type = ["dylib"]
11
12 [dependencies]
13 log = "0.4"
14 rustc = { path = "../librustc" }
15 rustc_data_structures = { path = "../librustc_data_structures" }
16 rustc_codegen_utils = { path = "../librustc_codegen_utils" }
17 rustc_target = { path = "../librustc_target" }
18 rustc_typeck = { path = "../librustc_typeck" }
19 serde_json = "1"
20 syntax = { path = "../libsyntax" }
21 syntax_pos = { path = "../libsyntax_pos" }
22 rls-data = "0.18.1"
23 rls-span = "0.4"