2016-01-21 15:19:23 -08:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_data_structures"
|
|
|
|
version = "0.0.0"
|
2019-02-09 01:36:22 +09:00
|
|
|
edition = "2018"
|
2016-01-21 15:19:23 -08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc_data_structures"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["dylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2019-03-25 15:45:44 +00:00
|
|
|
ena = "0.13"
|
2018-01-07 16:54:05 +01:00
|
|
|
log = "0.4"
|
2018-12-18 09:03:38 +01:00
|
|
|
jobserver_crate = { version = "0.1", package = "jobserver" }
|
|
|
|
lazy_static = "1"
|
2018-04-25 19:30:39 +03:00
|
|
|
rustc_cratesio_shim = { path = "../librustc_cratesio_shim" }
|
2016-01-21 15:19:23 -08:00
|
|
|
serialize = { path = "../libserialize" }
|
2018-10-13 15:43:12 +01:00
|
|
|
graphviz = { path = "../libgraphviz" }
|
2017-12-03 13:49:01 +01:00
|
|
|
cfg-if = "0.1.2"
|
|
|
|
stable_deref_trait = "1.0.0"
|
2018-12-18 09:03:38 +01:00
|
|
|
rayon = { version = "0.1.2", package = "rustc-rayon" }
|
|
|
|
rayon-core = { version = "0.1.2", package = "rustc-rayon-core" }
|
2018-05-24 05:37:40 +02:00
|
|
|
rustc-hash = "1.0.1"
|
2018-11-29 08:52:22 +11:00
|
|
|
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
|
2017-12-03 13:49:01 +01:00
|
|
|
|
|
|
|
[dependencies.parking_lot]
|
2019-02-22 13:49:19 +01:00
|
|
|
version = "0.7"
|
2018-01-07 16:54:05 +01:00
|
|
|
features = ["nightly"]
|