]> git.proxmox.com Git - rustc.git/blame - src/librustc_metadata/Cargo.toml
New upstream version 1.44.1+dfsg1
[rustc.git] / src / librustc_metadata / Cargo.toml
CommitLineData
7453a54e
SL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_metadata"
4version = "0.0.0"
9fa01778 5edition = "2018"
7453a54e
SL
6
7[lib]
8name = "rustc_metadata"
9path = "lib.rs"
416331ca 10doctest = false
7453a54e
SL
11
12[dependencies]
ff7c6d11 13flate2 = "1.0"
ba9703b0 14libc = "0.2"
ff7c6d11 15log = "0.4"
60c5eb7d
XL
16memmap = "0.7"
17smallvec = { version = "1.0", features = ["union", "may_dangle"] }
ba9703b0 18rustc_middle = { path = "../librustc_middle" }
74b04a01 19rustc_attr = { path = "../librustc_attr" }
3157f602 20rustc_data_structures = { path = "../librustc_data_structures" }
dfeec247
XL
21rustc_errors = { path = "../librustc_errors" }
22rustc_hir = { path = "../librustc_hir" }
ba9703b0 23rustc_hir_pretty = { path = "../librustc_hir_pretty" }
a1dfa0c6 24rustc_target = { path = "../librustc_target" }
e74abb32 25rustc_index = { path = "../librustc_index" }
416331ca 26rustc_serialize = { path = "../libserialize", package = "serialize" }
a1dfa0c6 27stable_deref_trait = "1.0.0"
74b04a01 28rustc_ast = { path = "../librustc_ast" }
dfeec247 29rustc_expand = { path = "../librustc_expand" }
dfeec247 30rustc_span = { path = "../librustc_span" }
ba9703b0 31rustc_session = { path = "../librustc_session" }
dfeec247
XL
32
33[target.'cfg(windows)'.dependencies]
34winapi = { version = "0.3", features = ["errhandlingapi", "libloaderapi"] }