20 lines
503 B
TOML
20 lines
503 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustc_lint"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "rustc_lint"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
rustc = { path = "../librustc" }
|
|
rustc_target = { path = "../librustc_target" }
|
|
syntax = { path = "../libsyntax" }
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
rustc_index = { path = "../librustc_index" }
|
|
rustc_error_codes = { path = "../librustc_error_codes" }
|