19 lines
423 B
TOML
19 lines
423 B
TOML
[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 = { path = "../liblog" }
|
|
rustc = { path = "../librustc" }
|
|
rustc_back = { path = "../librustc_back" }
|
|
rustc_const_eval = { path = "../librustc_const_eval" }
|
|
syntax = { path = "../libsyntax" }
|
|
syntax_pos = { path = "../libsyntax_pos" }
|