rust/src/librustc_passes/Cargo.toml

20 lines
521 B
TOML
Raw Normal View History

[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 = "0.4"
rustc = { path = "../librustc" }
rustc_const_eval = { path = "../librustc_const_eval" }
2016-04-27 10:47:46 +02:00
rustc_const_math = { path = "../librustc_const_math" }
2018-02-27 17:11:14 +01:00
rustc_data_structures = { path = "../librustc_data_structures" }
syntax = { path = "../libsyntax" }
syntax_pos = { path = "../libsyntax_pos" }
rustc_errors = { path = "../librustc_errors" }