]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_metadata/Cargo.toml
Rollup merge of #86382 - JohnTitor:try-desugar, r=estebank
[rust.git] / compiler / rustc_metadata / Cargo.toml
1 [package]
2 name = "rustc_metadata"
3 version = "0.0.0"
4 edition = "2018"
5
6 [lib]
7 doctest = false
8
9 [dependencies]
10 libc = "0.2"
11 snap = "1"
12 tracing = "0.1"
13 smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
14 rustc_middle = { path = "../rustc_middle" }
15 rustc_attr = { path = "../rustc_attr" }
16 rustc_data_structures = { path = "../rustc_data_structures" }
17 rustc_errors = { path = "../rustc_errors" }
18 rustc_feature = { path = "../rustc_feature" }
19 rustc_hir = { path = "../rustc_hir" }
20 rustc_hir_pretty = { path = "../rustc_hir_pretty" }
21 rustc_target = { path = "../rustc_target" }
22 rustc_index = { path = "../rustc_index" }
23 rustc_macros = { path = "../rustc_macros" }
24 rustc_serialize = { path = "../rustc_serialize" }
25 rustc_ast = { path = "../rustc_ast" }
26 rustc_expand = { path = "../rustc_expand" }
27 rustc_span = { path = "../rustc_span" }
28 rustc_session = { path = "../rustc_session" }
29
30 [target.'cfg(windows)'.dependencies]
31 winapi = { version = "0.3", features = ["errhandlingapi", "libloaderapi"] }