2016-03-22 18:40:24 +02: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]
|
2018-01-07 16:54:05 +01:00
|
|
|
log = "0.4"
|
2016-03-22 18:40:24 +02:00
|
|
|
rustc = { path = "../librustc" }
|
2017-08-01 14:43:11 +12:00
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
2017-05-03 12:18:04 -04:00
|
|
|
rustc_typeck = { path = "../librustc_typeck" }
|
2016-03-22 18:40:24 +02:00
|
|
|
syntax = { path = "../libsyntax" }
|
2017-03-14 15:16:44 +13:00
|
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
2018-02-02 08:29:59 +01:00
|
|
|
rls-data = "0.15"
|
2017-05-09 07:15:48 +12:00
|
|
|
rls-span = "0.4"
|
2017-03-15 21:20:23 +13:00
|
|
|
# FIXME(#40527) should move rustc serialize out of tree
|
|
|
|
rustc-serialize = "0.3"
|