rust/src/librustc_lint/Cargo.toml

18 lines
363 B
TOML
Raw Normal View History

[package]
authors = ["The Rust Project Developers"]
name = "rustc_lint"
version = "0.0.0"
[lib]
name = "rustc_lint"
path = "lib.rs"
crate-type = ["dylib"]
test = false
[dependencies]
log = "0.4"
rustc = { path = "../librustc" }
rustc_const_eval = { path = "../librustc_const_eval" }
syntax = { path = "../libsyntax" }
2016-06-27 12:45:33 -05:00
syntax_pos = { path = "../libsyntax_pos" }