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]
|
2018-12-19 11:11:31 -06:00
|
|
|
doctest = false
|
2016-01-21 17:19:23 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2021-04-21 23:40:29 -05:00
|
|
|
arrayvec = { version = "0.7", default-features = false }
|
2020-02-25 02:47:07 -06:00
|
|
|
ena = "0.14"
|
2020-08-07 19:03:47 -05:00
|
|
|
indexmap = "1.5.1"
|
2020-08-05 06:35:53 -05:00
|
|
|
tracing = "0.1"
|
2019-04-08 13:44:31 -05: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 06:49:01 -06:00
|
|
|
cfg-if = "0.1.2"
|
2021-04-23 18:09:40 -05:00
|
|
|
crossbeam-utils = { version = "0.8", features = ["nightly"] }
|
2017-12-03 06:49:01 -06:00
|
|
|
stable_deref_trait = "1.0.0"
|
2021-03-10 19:53:35 -06:00
|
|
|
rayon = { version = "0.3.1", package = "rustc-rayon" }
|
|
|
|
rayon-core = { version = "0.3.1", package = "rustc-rayon-core" }
|
2020-05-26 19:19:19 -05:00
|
|
|
rustc-hash = "1.1.0"
|
2021-02-14 08:37:30 -06:00
|
|
|
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_index = { path = "../rustc_index", package = "rustc_index" }
|
2019-11-11 16:15:36 -06:00
|
|
|
bitflags = "1.2.1"
|
2021-02-25 17:25:38 -06:00
|
|
|
measureme = "9.1.0"
|
2020-04-10 15:42:19 -05:00
|
|
|
libc = "0.2"
|
2020-09-20 12:07:52 -05:00
|
|
|
stacker = "0.1.12"
|
2021-04-23 17:33:09 -05:00
|
|
|
tempfile = "3.2"
|
2017-12-03 06:49:01 -06:00
|
|
|
|
|
|
|
[dependencies.parking_lot]
|
2020-09-12 01:24:09 -05:00
|
|
|
version = "0.11"
|
2020-01-04 15:46:47 -06:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3", features = ["fileapi", "psapi"] }
|
2021-03-29 04:18:52 -05:00
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
|
|
memmap2 = "0.2.1"
|