2016-01-21 17:19:23 -06:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_data_structures"
|
|
|
|
version = "0.0.0"
|
2019-02-08 10:36:22 -06:00
|
|
|
edition = "2018"
|
2016-01-21 17:19:23 -06:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc_data_structures"
|
|
|
|
path = "lib.rs"
|
2018-12-19 11:11:31 -06:00
|
|
|
doctest = false
|
2016-01-21 17:19:23 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2020-02-25 02:47:07 -06:00
|
|
|
ena = "0.14"
|
2019-05-14 11:42:57 -05:00
|
|
|
indexmap = "1"
|
2018-01-07 09:54:05 -06:00
|
|
|
log = "0.4"
|
2019-04-08 13:44:31 -05:00
|
|
|
jobserver_crate = { version = "0.1.13", package = "jobserver" }
|
2018-12-18 02:03:38 -06:00
|
|
|
lazy_static = "1"
|
2020-05-15 23:43:06 -05:00
|
|
|
once_cell = { version = "1", features = ["parking_lot"] }
|
2019-07-23 10:50:47 -05:00
|
|
|
rustc_serialize = { path = "../libserialize", package = "serialize" }
|
2018-10-13 09:43:12 -05:00
|
|
|
graphviz = { path = "../libgraphviz" }
|
2017-12-03 06:49:01 -06:00
|
|
|
cfg-if = "0.1.2"
|
2020-03-26 08:10:35 -05:00
|
|
|
crossbeam-utils = { version = "0.7", features = ["nightly"] }
|
2017-12-03 06:49:01 -06:00
|
|
|
stable_deref_trait = "1.0.0"
|
2019-09-10 12:13:07 -05:00
|
|
|
rayon = { version = "0.3.0", package = "rustc-rayon" }
|
|
|
|
rayon-core = { version = "0.3.0", package = "rustc-rayon-core" }
|
2018-05-23 22:37:40 -05:00
|
|
|
rustc-hash = "1.0.1"
|
2019-11-04 08:59:09 -06:00
|
|
|
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
|
2019-09-25 14:09:51 -05:00
|
|
|
rustc_index = { path = "../librustc_index", package = "rustc_index" }
|
2019-11-11 16:15:36 -06:00
|
|
|
bitflags = "1.2.1"
|
2020-01-03 05:01:53 -06:00
|
|
|
measureme = "0.7.1"
|
2020-04-10 15:42:19 -05:00
|
|
|
libc = "0.2"
|
2020-05-10 05:23:13 -05:00
|
|
|
stacker = "0.1.9"
|
2017-12-03 06:49:01 -06:00
|
|
|
|
|
|
|
[dependencies.parking_lot]
|
2020-03-26 08:10:35 -05:00
|
|
|
version = "0.10"
|
2018-01-07 09:54:05 -06:00
|
|
|
features = ["nightly"]
|
2020-01-04 15:46:47 -06:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3", features = ["fileapi", "psapi"] }
|