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