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]
|
2018-12-19 18:11:31 +01:00
|
|
|
doctest = false
|
2016-01-21 15:19:23 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2020-02-25 09:47:07 +01:00
|
|
|
ena = "0.14"
|
2020-08-07 17:03:47 -07:00
|
|
|
indexmap = "1.5.1"
|
2020-08-05 17:05:53 +05:30
|
|
|
tracing = "0.1"
|
2019-04-08 20:44:31 +02:00
|
|
|
jobserver_crate = { version = "0.1.13", package = "jobserver" }
|
2020-08-27 22:58:48 -05: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 10:13:07 -07:00
|
|
|
rayon = { version = "0.3.0", package = "rustc-rayon" }
|
|
|
|
rayon-core = { version = "0.3.0", package = "rustc-rayon-core" }
|
2020-05-26 20:19:19 -04:00
|
|
|
rustc-hash = "1.1.0"
|
2019-11-04 15:59:09 +01:00
|
|
|
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_index = { path = "../rustc_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"
|
2020-04-10 22:42:19 +02:00
|
|
|
libc = "0.2"
|
2020-08-17 10:57:53 -06:00
|
|
|
stacker = "0.1.11"
|
2020-08-08 21:05:50 -04:00
|
|
|
tempfile = "3.0.5"
|
2017-12-03 13:49:01 +01:00
|
|
|
|
|
|
|
[dependencies.parking_lot]
|
2020-03-26 14:10:35 +01:00
|
|
|
version = "0.10"
|
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"] }
|