]> git.lizzy.rs Git - rust.git/blob - src/librustc_data_structures/Cargo.toml
Merge remote-tracking branch 'upstream/master'
[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.11"
14 log = "0.4"
15 rustc_cratesio_shim = { path = "../librustc_cratesio_shim" }
16 serialize = { path = "../libserialize" }
17 graphviz = { path = "../libgraphviz" }
18 cfg-if = "0.1.2"
19 stable_deref_trait = "1.0.0"
20 rayon = { version = "0.1.1", package = "rustc-rayon" }
21 rayon-core = { version = "0.1.1", package = "rustc-rayon-core" }
22 rustc-hash = "1.0.1"
23 smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
24
25 [dependencies.parking_lot]
26 version = "0.6"
27 features = ["nightly"]