2016-01-21 15:19:23 -08:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["dylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
arena = { path = "../libarena" }
|
|
|
|
fmt_macros = { path = "../libfmt_macros" }
|
|
|
|
graphviz = { path = "../libgraphviz" }
|
2017-02-15 07:57:59 -08:00
|
|
|
log = "0.3"
|
2017-04-26 23:22:45 +02:00
|
|
|
owning_ref = "0.3.3"
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc_back = { path = "../librustc_back" }
|
2016-02-21 09:49:13 -08:00
|
|
|
rustc_bitflags = { path = "../librustc_bitflags" }
|
2016-03-15 12:33:13 +01:00
|
|
|
rustc_const_math = { path = "../librustc_const_math" }
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
2016-06-21 18:08:13 -04:00
|
|
|
rustc_errors = { path = "../librustc_errors" }
|
2016-01-21 15:19:23 -08:00
|
|
|
serialize = { path = "../libserialize" }
|
|
|
|
syntax = { path = "../libsyntax" }
|
2016-06-27 17:45:33 +00:00
|
|
|
syntax_pos = { path = "../libsyntax_pos" }
|