]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_metadata/Cargo.toml
New upstream version 1.57.0+dfsg1
[rustc.git] / compiler / rustc_metadata / Cargo.toml
CommitLineData
1b1a35ee 1[package]
1b1a35ee
XL
2name = "rustc_metadata"
3version = "0.0.0"
c295e0f8 4edition = "2021"
1b1a35ee
XL
5
6[lib]
7doctest = false
8
9[dependencies]
10libc = "0.2"
c295e0f8 11odht = { version = "0.3.1", features = ["nightly"] }
1b1a35ee
XL
12snap = "1"
13tracing = "0.1"
6a06907d 14smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
1b1a35ee
XL
15rustc_middle = { path = "../rustc_middle" }
16rustc_attr = { path = "../rustc_attr" }
17rustc_data_structures = { path = "../rustc_data_structures" }
18rustc_errors = { path = "../rustc_errors" }
19rustc_feature = { path = "../rustc_feature" }
20rustc_hir = { path = "../rustc_hir" }
21rustc_hir_pretty = { path = "../rustc_hir_pretty" }
22rustc_target = { path = "../rustc_target" }
23rustc_index = { path = "../rustc_index" }
24rustc_macros = { path = "../rustc_macros" }
25rustc_serialize = { path = "../rustc_serialize" }
1b1a35ee
XL
26rustc_ast = { path = "../rustc_ast" }
27rustc_expand = { path = "../rustc_expand" }
28rustc_span = { path = "../rustc_span" }
29rustc_session = { path = "../rustc_session" }
30
31[target.'cfg(windows)'.dependencies]
32winapi = { version = "0.3", features = ["errhandlingapi", "libloaderapi"] }