]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_data_structures/Cargo.toml
Auto merge of #101514 - nvzqz:nvzqz/stabilize-nonzero-bits, r=thomcc
[rust.git] / compiler / rustc_data_structures / Cargo.toml
1 [package]
2 name = "rustc_data_structures"
3 version = "0.0.0"
4 edition = "2021"
5
6 [lib]
7
8 [dependencies]
9 arrayvec = { version = "0.7", default-features = false }
10 bitflags = "1.2.1"
11 cfg-if = "0.1.2"
12 ena = "0.14"
13 indexmap = { version = "1.9.1" }
14 jobserver_crate = { version = "0.1.13", package = "jobserver" }
15 libc = "0.2"
16 measureme = "10.0.0"
17 rayon-core = { version = "0.4.0", package = "rustc-rayon-core", optional = true }
18 rayon = { version = "0.4.0", package = "rustc-rayon", optional = true }
19 rustc_graphviz = { path = "../rustc_graphviz" }
20 rustc-hash = "1.1.0"
21 rustc_index = { path = "../rustc_index", package = "rustc_index" }
22 rustc_macros = { path = "../rustc_macros" }
23 rustc_serialize = { path = "../rustc_serialize" }
24 smallvec = { version = "1.8.1", features = ["const_generics", "union", "may_dangle"] }
25 stable_deref_trait = "1.0.0"
26 stacker = "0.1.15"
27 tempfile = "3.2"
28 thin-vec = "0.2.9"
29 tracing = "0.1"
30
31 [dependencies.parking_lot]
32 version = "0.11"
33
34 [target.'cfg(windows)'.dependencies]
35 winapi = { version = "0.3", features = ["fileapi", "psapi", "winerror"] }
36
37 [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
38 memmap2 = "0.2.1"
39
40 [features]
41 rustc_use_parallel_compiler = ["indexmap/rustc-rayon", "rayon", "rayon-core"]