2016-01-21 15:19:23 -08:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_lint"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc_lint"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["dylib"]
|
2016-04-29 14:23:15 -07:00
|
|
|
test = false
|
2016-01-21 15:19:23 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2018-01-07 16:54:05 +01:00
|
|
|
log = "0.4"
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc = { path = "../librustc" }
|
2017-12-27 21:32:01 +01:00
|
|
|
rustc_mir = { path = "../librustc_mir"}
|
2016-01-21 15:19:23 -08:00
|
|
|
syntax = { path = "../libsyntax" }
|
2016-06-27 17:45:33 +00:00
|
|
|
syntax_pos = { path = "../libsyntax_pos" }
|