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]
|
|
|
|
name = "rustc_data_structures"
|
|
|
|
path = "lib.rs"
|
2018-12-19 17:11:31 +00:00
|
|
|
doctest = false
|
2016-01-21 23:19:23 +00:00
|
|
|
|
|
|
|
[dependencies]
|
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" }
|
2018-12-18 08:03:38 +00:00
|
|
|
lazy_static = "1"
|
2020-05-16 04:43:06 +00:00
|
|
|
once_cell = { version = "1", features = ["parking_lot"] }
|
2020-06-02 17:03:40 +00:00
|
|
|
rustc_serialize = { path = "../librustc_serialize" }
|
2020-06-11 14:49:57 +00:00
|
|
|
rustc_macros = { path = "../librustc_macros" }
|
2020-06-02 17:19:49 +00:00
|
|
|
rustc_graphviz = { path = "../librustc_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"
|
2019-09-10 17:13:07 +00:00
|
|
|
rayon = { version = "0.3.0", package = "rustc-rayon" }
|
|
|
|
rayon-core = { version = "0.3.0", package = "rustc-rayon-core" }
|
2020-05-27 00:19:19 +00:00
|
|
|
rustc-hash = "1.1.0"
|
2019-11-04 14:59:09 +00:00
|
|
|
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
|
2019-09-25 19:09:51 +00:00
|
|
|
rustc_index = { path = "../librustc_index", package = "rustc_index" }
|
2019-11-11 22:15:36 +00:00
|
|
|
bitflags = "1.2.1"
|
2020-01-03 11:01:53 +00:00
|
|
|
measureme = "0.7.1"
|
2020-04-10 20:42:19 +00:00
|
|
|
libc = "0.2"
|
2020-08-17 16:57:53 +00:00
|
|
|
stacker = "0.1.11"
|
2020-08-09 01:05:50 +00:00
|
|
|
tempfile = "3.0.5"
|
2017-12-03 12:49:01 +00:00
|
|
|
|
|
|
|
[dependencies.parking_lot]
|
2020-03-26 13:10:35 +00:00
|
|
|
version = "0.10"
|
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"] }
|