]> git.lizzy.rs Git - rust.git/blob - src/librustc_data_structures/Cargo.toml
Auto merge of #74410 - mati865:mingw-no-self-contained-when-cross-compiling, r=petroc...
[rust.git] / src / librustc_data_structures / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_data_structures"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_data_structures"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 ena = "0.14"
14 indexmap = "1.5.1"
15 log = { package = "tracing", version = "0.1" }
16 jobserver_crate = { version = "0.1.13", package = "jobserver" }
17 lazy_static = "1"
18 once_cell = { version = "1", features = ["parking_lot"] }
19 rustc_serialize = { path = "../librustc_serialize" }
20 rustc_graphviz = { path = "../librustc_graphviz" }
21 cfg-if = "0.1.2"
22 crossbeam-utils = { version = "0.7", features = ["nightly"] }
23 stable_deref_trait = "1.0.0"
24 rayon = { version = "0.3.0", package = "rustc-rayon" }
25 rayon-core = { version = "0.3.0", package = "rustc-rayon-core" }
26 rustc-hash = "1.1.0"
27 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
28 rustc_index = { path = "../librustc_index", package = "rustc_index" }
29 bitflags = "1.2.1"
30 measureme = "0.7.1"
31 libc = "0.2"
32 stacker = "0.1.9"
33
34 [dependencies.parking_lot]
35 version = "0.10"
36 features = ["nightly"]
37
38 [target.'cfg(windows)'.dependencies]
39 winapi = { version = "0.3", features = ["fileapi", "psapi"] }