]> git.lizzy.rs Git - rust.git/blob - src/librustc_metadata/Cargo.toml
Add test for issue-69092
[rust.git] / src / librustc_metadata / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_metadata"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_metadata"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 flate2 = "1.0"
14 log = "0.4"
15 memmap = "0.7"
16 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
17 rustc = { path = "../librustc" }
18 rustc_attr = { path = "../librustc_attr" }
19 rustc_data_structures = { path = "../librustc_data_structures" }
20 rustc_errors = { path = "../librustc_errors" }
21 rustc_hir = { path = "../librustc_hir" }
22 rustc_target = { path = "../librustc_target" }
23 rustc_index = { path = "../librustc_index" }
24 rustc_serialize = { path = "../libserialize", package = "serialize" }
25 stable_deref_trait = "1.0.0"
26 rustc_ast = { path = "../librustc_ast" }
27 rustc_expand = { path = "../librustc_expand" }
28 rustc_span = { path = "../librustc_span" }
29
30 [target.'cfg(windows)'.dependencies]
31 winapi = { version = "0.3", features = ["errhandlingapi", "libloaderapi"] }