]> git.lizzy.rs Git - rust.git/blob - src/librustc_data_structures/Cargo.toml
Auto merge of #68031 - Marwes:fold_list, r=estebank
[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.13.1"
14 indexmap = "1"
15 log = "0.4"
16 jobserver_crate = { version = "0.1.13", package = "jobserver" }
17 lazy_static = "1"
18 rustc_serialize = { path = "../libserialize", package = "serialize" }
19 graphviz = { path = "../libgraphviz" }
20 cfg-if = "0.1.2"
21 crossbeam-utils = { version = "0.6.5", features = ["nightly"] }
22 stable_deref_trait = "1.0.0"
23 rayon = { version = "0.3.0", package = "rustc-rayon" }
24 rayon-core = { version = "0.3.0", package = "rustc-rayon-core" }
25 rustc-hash = "1.0.1"
26 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
27 rustc_index = { path = "../librustc_index", package = "rustc_index" }
28 bitflags = "1.2.1"
29 measureme = "0.7.1"
30
31 [dependencies.parking_lot]
32 version = "0.9"
33 features = ["nightly"]
34
35 [target.'cfg(windows)'.dependencies]
36 winapi = { version = "0.3", features = ["fileapi", "psapi"] }