19 lines
459 B
TOML
19 lines
459 B
TOML
|
[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" }
|
||
|
syntax = { path = "../libsyntax" }
|
||
|
graphviz = { path = "../libgraphviz" }
|