rust/src/librustc_save_analysis/Cargo.toml

22 lines
540 B
TOML
Raw Normal View History

[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]
log = "0.3"
rustc = { path = "../librustc" }
2017-07-31 21:43:11 -05:00
rustc_data_structures = { path = "../librustc_data_structures" }
rustc_typeck = { path = "../librustc_typeck" }
syntax = { path = "../libsyntax" }
syntax_pos = { path = "../libsyntax_pos" }
2017-11-14 15:15:43 -06:00
rls-data = "0.13"
rls-span = "0.4"
# FIXME(#40527) should move rustc serialize out of tree
rustc-serialize = "0.3"