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"
|
2018-12-19 18:11:31 +01:00
|
|
|
doctest = false
|
2016-01-21 15:19:23 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2019-09-20 11:23:47 +10:00
|
|
|
ena = "0.13.1"
|
2019-05-14 19:42:57 +03:00
|
|
|
indexmap = "1"
|
2018-01-07 16:54:05 +01:00
|
|
|
log = "0.4"
|
2019-04-08 20:44:31 +02:00
|
|
|
jobserver_crate = { version = "0.1.13", package = "jobserver" }
|
2018-12-18 09:03:38 +01:00
|
|
|
lazy_static = "1"
|
2019-07-23 18:50:47 +03:00
|
|
|
rustc_serialize = { path = "../libserialize", package = "serialize" }
|
2018-10-13 15:43:12 +01:00
|
|
|
graphviz = { path = "../libgraphviz" }
|
2017-12-03 13:49:01 +01:00
|
|
|
cfg-if = "0.1.2"
|
2019-03-15 12:17:11 +01:00
|
|
|
crossbeam-utils = { version = "0.6.5", features = ["nightly"] }
|
2017-12-03 13:49:01 +01:00
|
|
|
stable_deref_trait = "1.0.0"
|
2019-09-10 10:13:07 -07:00
|
|
|
rayon = { version = "0.3.0", package = "rustc-rayon" }
|
|
|
|
rayon-core = { version = "0.3.0", package = "rustc-rayon-core" }
|
2018-05-24 05:37:40 +02:00
|
|
|
rustc-hash = "1.0.1"
|
2019-11-04 15:59:09 +01:00
|
|
|
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
|
2019-09-26 03:09:51 +08:00
|
|
|
rustc_index = { path = "../librustc_index", package = "rustc_index" }
|
2019-11-11 17:15:36 -05:00
|
|
|
bitflags = "1.2.1"
|
2020-01-03 12:01:53 +01:00
|
|
|
measureme = "0.7.1"
|
2017-12-03 13:49:01 +01:00
|
|
|
|
|
|
|
[dependencies.parking_lot]
|
2019-09-11 19:03:28 +02:00
|
|
|
version = "0.9"
|
2018-01-07 16:54:05 +01:00
|
|
|
features = ["nightly"]
|
2020-01-04 16:46:47 -05:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3", features = ["fileapi", "psapi"] }
|