2016-01-21 17:19:23 -06: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 16:23:15 -05:00
|
|
|
test = false
|
2016-01-21 17:19:23 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2018-01-07 09:54:05 -06:00
|
|
|
log = "0.4"
|
2016-01-21 17:19:23 -06:00
|
|
|
rustc = { path = "../librustc" }
|
2016-03-30 06:43:36 -05:00
|
|
|
rustc_const_eval = { path = "../librustc_const_eval" }
|
2016-01-21 17:19:23 -06:00
|
|
|
syntax = { path = "../libsyntax" }
|
2016-06-27 12:45:33 -05:00
|
|
|
syntax_pos = { path = "../libsyntax_pos" }
|