]> git.proxmox.com Git - rustc.git/blame - src/librustc_trait_selection/Cargo.toml
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_trait_selection / Cargo.toml
CommitLineData
7453a54e
SL
1[package]
2authors = ["The Rust Project Developers"]
ba9703b0 3name = "rustc_trait_selection"
7453a54e 4version = "0.0.0"
9fa01778 5edition = "2018"
7453a54e
SL
6
7[lib]
ba9703b0 8name = "rustc_trait_selection"
7453a54e 9path = "lib.rs"
416331ca 10doctest = false
7453a54e
SL
11
12[dependencies]
f035d41b 13rustc_parse_format = { path = "../librustc_parse_format" }
3dfed10e 14tracing = "0.1"
74b04a01 15rustc_attr = { path = "../librustc_attr" }
ba9703b0
XL
16rustc_middle = { path = "../librustc_middle" }
17rustc_ast = { path = "../librustc_ast" }
7453a54e 18rustc_data_structures = { path = "../librustc_data_structures" }
dfeec247 19rustc_errors = { path = "../librustc_errors" }
ba9703b0 20rustc_hir = { path = "../librustc_hir" }
e74abb32 21rustc_index = { path = "../librustc_index" }
ba9703b0
XL
22rustc_infer = { path = "../librustc_infer" }
23rustc_macros = { path = "../librustc_macros" }
24rustc_session = { path = "../librustc_session" }
dfeec247 25rustc_span = { path = "../librustc_span" }
ba9703b0 26rustc_target = { path = "../librustc_target" }
60c5eb7d 27smallvec = { version = "1.0", features = ["union", "may_dangle"] }