17 lines
373 B
TOML
17 lines
373 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustc_passes"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
name = "rustc_passes"
|
|
path = "lib.rs"
|
|
crate-type = ["dylib"]
|
|
|
|
[dependencies]
|
|
log = { path = "../liblog" }
|
|
rustc = { path = "../librustc" }
|
|
rustc_const_eval = { path = "../librustc_const_eval" }
|
|
rustc_front = { path = "../librustc_front" }
|
|
syntax = { path = "../libsyntax" }
|