]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_data_structures/Cargo.toml
Rollup merge of #101240 - JohnTitor:JohnTitor-patch-1, r=ehuss
[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 doctest = false
8
9 [dependencies]
10 arrayvec = { version = "0.7", default-features = false }
11 ena = "0.14"
12 indexmap = { version = "1.9.1" }
13 tracing = "0.1"
14 jobserver_crate = { version = "0.1.13", package = "jobserver" }
15 rustc_serialize = { path = "../rustc_serialize" }
16 rustc_macros = { path = "../rustc_macros" }
17 rustc_graphviz = { path = "../rustc_graphviz" }
18 cfg-if = "0.1.2"
19 stable_deref_trait = "1.0.0"
20 rayon = { version = "0.4.0", package = "rustc-rayon", optional = true }
21 rayon-core = { version = "0.4.0", package = "rustc-rayon-core", optional = true }
22 rustc-hash = "1.1.0"
23 smallvec = { version = "1.8.1", features = ["const_generics", "union", "may_dangle"] }
24 rustc_index = { path = "../rustc_index", package = "rustc_index" }
25 bitflags = "1.2.1"
26 measureme = "10.0.0"
27 libc = "0.2"
28 stacker = "0.1.14"
29 tempfile = "3.2"
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"]