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