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