]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_trait_selection/Cargo.toml
New upstream version 1.64.0+dfsg1
[rustc.git] / compiler / rustc_trait_selection / Cargo.toml
CommitLineData
1b1a35ee 1[package]
1b1a35ee
XL
2name = "rustc_trait_selection"
3version = "0.0.0"
c295e0f8 4edition = "2021"
1b1a35ee
XL
5
6[lib]
7doctest = false
8
9[dependencies]
10rustc_parse_format = { path = "../rustc_parse_format" }
11tracing = "0.1"
12rustc_attr = { path = "../rustc_attr" }
13rustc_middle = { path = "../rustc_middle" }
14rustc_ast = { path = "../rustc_ast" }
15rustc_data_structures = { path = "../rustc_data_structures" }
16rustc_errors = { path = "../rustc_errors" }
17rustc_hir = { path = "../rustc_hir" }
18rustc_index = { path = "../rustc_index" }
19rustc_infer = { path = "../rustc_infer" }
c295e0f8 20rustc_lint_defs = { path = "../rustc_lint_defs" }
1b1a35ee 21rustc_macros = { path = "../rustc_macros" }
c295e0f8 22rustc_query_system = { path = "../rustc_query_system" }
1b1a35ee
XL
23rustc_session = { path = "../rustc_session" }
24rustc_span = { path = "../rustc_span" }
25rustc_target = { path = "../rustc_target" }
064997fb
FG
26rustc_transmute = { path = "../rustc_transmute", features = ["rustc"] }
27smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }