]> git.proxmox.com Git - rustc.git/blame - src/librustc_lint/Cargo.toml
New upstream version 1.44.1+dfsg1
[rustc.git] / src / librustc_lint / Cargo.toml
CommitLineData
7453a54e
SL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_lint"
4version = "0.0.0"
9fa01778 5edition = "2018"
7453a54e
SL
6
7[lib]
8name = "rustc_lint"
9path = "lib.rs"
7453a54e
SL
10
11[dependencies]
ff7c6d11 12log = "0.4"
dfeec247 13unicode-security = "0.0.2"
ba9703b0 14rustc_middle = { path = "../librustc_middle" }
74b04a01
XL
15rustc_ast_pretty = { path = "../librustc_ast_pretty" }
16rustc_attr = { path = "../librustc_attr" }
dfeec247
XL
17rustc_errors = { path = "../librustc_errors" }
18rustc_hir = { path = "../librustc_hir" }
83c7162d 19rustc_target = { path = "../librustc_target" }
74b04a01 20rustc_ast = { path = "../librustc_ast" }
dfeec247 21rustc_span = { path = "../librustc_span" }
a1dfa0c6 22rustc_data_structures = { path = "../librustc_data_structures" }
60c5eb7d 23rustc_feature = { path = "../librustc_feature" }
e74abb32 24rustc_index = { path = "../librustc_index" }
60c5eb7d 25rustc_session = { path = "../librustc_session" }
74b04a01 26rustc_infer = { path = "../librustc_infer" }
ba9703b0 27rustc_trait_selection = { path = "../librustc_trait_selection" }