rust/src/librustc_lint/Cargo.toml

18 lines
348 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_mir = { path = "../librustc_mir"}
syntax = { path = "../libsyntax" }
2016-06-27 17:45:33 +00:00
syntax_pos = { path = "../libsyntax_pos" }