]> git.lizzy.rs Git - rust.git/blob - src/librustc_data_structures/Cargo.toml
Rollup merge of #59634 - DevQps:explain-E0704, 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 crate-type = ["dylib"]
11
12 [dependencies]
13 ena = "0.13"
14 log = "0.4"
15 jobserver_crate = { version = "0.1.13", package = "jobserver" }
16 lazy_static = "1"
17 rustc_cratesio_shim = { path = "../librustc_cratesio_shim" }
18 serialize = { path = "../libserialize" }
19 graphviz = { path = "../libgraphviz" }
20 cfg-if = "0.1.2"
21 stable_deref_trait = "1.0.0"
22 rayon = { version = "0.2.0", package = "rustc-rayon" }
23 rayon-core = { version = "0.2.0", package = "rustc-rayon-core" }
24 rustc-hash = "1.0.1"
25 smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
26
27 [dependencies.parking_lot]
28 version = "0.7"
29 features = ["nightly"]