2016-01-21 15:19:23 -08:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_lint"
|
|
|
|
version = "0.0.0"
|
2019-02-08 20:35:41 +09:00
|
|
|
edition = "2018"
|
2016-01-21 15:19:23 -08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc_lint"
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2018-01-07 16:54:05 +01:00
|
|
|
log = "0.4"
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc = { path = "../librustc" }
|
2018-04-25 19:30:39 +03:00
|
|
|
rustc_target = { path = "../librustc_target" }
|
2016-01-21 15:19:23 -08:00
|
|
|
syntax = { path = "../libsyntax" }
|
2019-12-31 20:15:40 +03:00
|
|
|
rustc_span = { path = "../librustc_span" }
|
2018-11-01 19:03:38 +01:00
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
2019-11-30 00:23:38 +01:00
|
|
|
rustc_feature = { path = "../librustc_feature" }
|
2019-09-26 05:38:33 +00:00
|
|
|
rustc_index = { path = "../librustc_index" }
|
2019-11-11 22:46:56 +01:00
|
|
|
rustc_error_codes = { path = "../librustc_error_codes" }
|
2019-11-12 12:09:20 -05:00
|
|
|
rustc_session = { path = "../librustc_session" }
|