2016-03-30 06:43:36 -05:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_const_eval"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc_const_eval"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["dylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = { path = "../liblog" }
|
|
|
|
serialize = { path = "../libserialize" }
|
|
|
|
rustc = { path = "../librustc" }
|
|
|
|
rustc_back = { path = "../librustc_back" }
|
|
|
|
rustc_const_math = { path = "../librustc_const_math" }
|
2016-07-19 16:02:56 -05:00
|
|
|
rustc_errors = { path = "../librustc_errors" }
|
2016-03-30 06:43:36 -05:00
|
|
|
syntax = { path = "../libsyntax" }
|
|
|
|
graphviz = { path = "../libgraphviz" }
|
2016-06-21 17:08:13 -05:00
|
|
|
syntax_pos = { path = "../libsyntax_pos" }
|