]> git.proxmox.com Git - rustc.git/blob - src/librustc_metadata/Cargo.toml
New upstream version 1.44.1+dfsg1
[rustc.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 libc = "0.2"
15 log = "0.4"
16 memmap = "0.7"
17 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
18 rustc_middle = { path = "../librustc_middle" }
19 rustc_attr = { path = "../librustc_attr" }
20 rustc_data_structures = { path = "../librustc_data_structures" }
21 rustc_errors = { path = "../librustc_errors" }
22 rustc_hir = { path = "../librustc_hir" }
23 rustc_hir_pretty = { path = "../librustc_hir_pretty" }
24 rustc_target = { path = "../librustc_target" }
25 rustc_index = { path = "../librustc_index" }
26 rustc_serialize = { path = "../libserialize", package = "serialize" }
27 stable_deref_trait = "1.0.0"
28 rustc_ast = { path = "../librustc_ast" }
29 rustc_expand = { path = "../librustc_expand" }
30 rustc_span = { path = "../librustc_span" }
31 rustc_session = { path = "../librustc_session" }
32
33 [target.'cfg(windows)'.dependencies]
34 winapi = { version = "0.3", features = ["errhandlingapi", "libloaderapi"] }