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]
|
|
|
|
name = "rustc_data_structures"
|
|
|
|
path = "lib.rs"
|
2018-12-19 11:11:31 -06:00
|
|
|
doctest = false
|
2016-01-21 17:19:23 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2019-09-19 20:23:47 -05:00
|
|
|
ena = "0.13.1"
|
2019-05-14 11:42:57 -05:00
|
|
|
indexmap = "1"
|
2018-01-07 09:54:05 -06:00
|
|
|
log = "0.4"
|
2019-04-08 13:44:31 -05:00
|
|
|
jobserver_crate = { version = "0.1.13", package = "jobserver" }
|
2018-12-18 02:03:38 -06:00
|
|
|
lazy_static = "1"
|
2019-07-23 10:50:47 -05:00
|
|
|
rustc_serialize = { path = "../libserialize", package = "serialize" }
|
2018-10-13 09:43:12 -05:00
|
|
|
graphviz = { path = "../libgraphviz" }
|
2017-12-03 06:49:01 -06:00
|
|
|
cfg-if = "0.1.2"
|
2019-03-15 06:17:11 -05:00
|
|
|
crossbeam-utils = { version = "0.6.5", features = ["nightly"] }
|
2017-12-03 06:49:01 -06:00
|
|
|
stable_deref_trait = "1.0.0"
|
2019-09-10 12:13:07 -05:00
|
|
|
rayon = { version = "0.3.0", package = "rustc-rayon" }
|
|
|
|
rayon-core = { version = "0.3.0", package = "rustc-rayon-core" }
|
2018-05-23 22:37:40 -05:00
|
|
|
rustc-hash = "1.0.1"
|
2019-11-04 08:59:09 -06:00
|
|
|
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
|
2019-09-25 14:09:51 -05:00
|
|
|
rustc_index = { path = "../librustc_index", package = "rustc_index" }
|
2019-11-11 16:15:36 -06:00
|
|
|
bitflags = "1.2.1"
|
2019-12-17 07:44:07 -06:00
|
|
|
measureme = "0.7.0"
|
2017-12-03 06:49:01 -06:00
|
|
|
|
|
|
|
[dependencies.parking_lot]
|
2019-09-11 12:03:28 -05:00
|
|
|
version = "0.9"
|
2018-01-07 09:54:05 -06:00
|
|
|
features = ["nightly"]
|