]> git.lizzy.rs Git - rust.git/blob - src/librustc_lint/Cargo.toml
Rollup merge of #71711 - Mark-Simulacrum:deignore-tests, r=nikomatsakis
[rust.git] / src / librustc_lint / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_lint"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_lint"
9 path = "lib.rs"
10
11 [dependencies]
12 log = "0.4"
13 unicode-security = "0.0.3"
14 rustc_middle = { path = "../librustc_middle" }
15 rustc_ast_pretty = { path = "../librustc_ast_pretty" }
16 rustc_attr = { path = "../librustc_attr" }
17 rustc_errors = { path = "../librustc_errors" }
18 rustc_hir = { path = "../librustc_hir" }
19 rustc_target = { path = "../librustc_target" }
20 rustc_ast = { path = "../librustc_ast" }
21 rustc_span = { path = "../librustc_span" }
22 rustc_data_structures = { path = "../librustc_data_structures" }
23 rustc_feature = { path = "../librustc_feature" }
24 rustc_index = { path = "../librustc_index" }
25 rustc_session = { path = "../librustc_session" }
26 rustc_trait_selection = { path = "../librustc_trait_selection" }