2016-03-22 11:40:24 -05:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_save_analysis"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc_save_analysis"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["dylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2017-02-15 09:57:59 -06:00
|
|
|
log = "0.3"
|
2016-03-22 11:40:24 -05:00
|
|
|
rustc = { path = "../librustc" }
|
2017-07-31 21:43:11 -05:00
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
2017-05-03 11:18:04 -05:00
|
|
|
rustc_typeck = { path = "../librustc_typeck" }
|
2016-03-22 11:40:24 -05:00
|
|
|
syntax = { path = "../libsyntax" }
|
2017-03-13 21:16:44 -05:00
|
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
2017-11-14 15:15:43 -06:00
|
|
|
rls-data = "0.13"
|
2017-05-08 14:15:48 -05:00
|
|
|
rls-span = "0.4"
|
2017-03-15 03:20:23 -05:00
|
|
|
# FIXME(#40527) should move rustc serialize out of tree
|
|
|
|
rustc-serialize = "0.3"
|