2016-01-22 00:19:23 +01:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_data_structures"
|
|
|
|
version = "0.0.0"
|
2019-02-08 17:36:22 +01:00
|
|
|
edition = "2018"
|
2016-01-22 00:19:23 +01:00
|
|
|
|
|
|
|
[lib]
|
2018-12-19 18:11:31 +01:00
|
|
|
doctest = false
|
2016-01-22 00:19:23 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2020-02-25 09:47:07 +01:00
|
|
|
ena = "0.14"
|
2020-08-08 02:03:47 +02:00
|
|
|
indexmap = "1.5.1"
|
2020-08-05 13:35:53 +02:00
|
|
|
tracing = "0.1"
|
2019-04-08 20:44:31 +02:00
|
|
|
jobserver_crate = { version = "0.1.13", package = "jobserver" }
|
2020-08-28 05:58:48 +02:00
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
|
|
|
rustc_graphviz = { path = "../rustc_graphviz" }
|
2017-12-03 13:49:01 +01:00
|
|
|
cfg-if = "0.1.2"
|
2020-03-26 14:10:35 +01:00
|
|
|
crossbeam-utils = { version = "0.7", features = ["nightly"] }
|
2017-12-03 13:49:01 +01:00
|
|
|
stable_deref_trait = "1.0.0"
|
2019-09-10 19:13:07 +02:00
|
|
|
rayon = { version = "0.3.0", package = "rustc-rayon" }
|
|
|
|
rayon-core = { version = "0.3.0", package = "rustc-rayon-core" }
|
2020-05-27 02:19:19 +02:00
|
|
|
rustc-hash = "1.1.0"
|
2019-11-04 15:59:09 +01:00
|
|
|
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
|
2020-08-28 05:58:48 +02:00
|
|
|
rustc_index = { path = "../rustc_index", package = "rustc_index" }
|
2019-11-11 23:15:36 +01:00
|
|
|
bitflags = "1.2.1"
|
2020-01-03 12:01:53 +01:00
|
|
|
measureme = "0.7.1"
|
2020-04-10 22:42:19 +02:00
|
|
|
libc = "0.2"
|
2020-08-17 18:57:53 +02:00
|
|
|
stacker = "0.1.11"
|
2020-08-09 03:05:50 +02:00
|
|
|
tempfile = "3.0.5"
|
2017-12-03 13:49:01 +01:00
|
|
|
|
|
|
|
[dependencies.parking_lot]
|
2020-09-12 08:24:09 +02:00
|
|
|
version = "0.11"
|
2018-01-07 16:54:05 +01:00
|
|
|
features = ["nightly"]
|
2020-01-04 22:46:47 +01:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3", features = ["fileapi", "psapi"] }
|