rust/src/librustc_data_structures/Cargo.toml

40 lines
1.1 KiB
TOML
Raw Normal View History

[package]
authors = ["The Rust Project Developers"]
name = "rustc_data_structures"
version = "0.0.0"
2019-02-08 10:36:22 -06:00
edition = "2018"
[lib]
name = "rustc_data_structures"
path = "lib.rs"
doctest = false
[dependencies]
ena = "0.14"
indexmap = "1"
2020-07-24 13:42:00 -05:00
log = { package = "tracing", version = "0.1" }
2019-04-08 13:44:31 -05:00
jobserver_crate = { version = "0.1.13", package = "jobserver" }
lazy_static = "1"
once_cell = { version = "1", features = ["parking_lot"] }
2020-06-02 12:03:40 -05:00
rustc_serialize = { path = "../librustc_serialize" }
2020-06-02 12:19:49 -05:00
rustc_graphviz = { path = "../librustc_graphviz" }
cfg-if = "0.1.2"
crossbeam-utils = { version = "0.7", features = ["nightly"] }
stable_deref_trait = "1.0.0"
rayon = { version = "0.3.0", package = "rustc-rayon" }
rayon-core = { version = "0.3.0", package = "rustc-rayon-core" }
2020-05-26 19:19:19 -05:00
rustc-hash = "1.1.0"
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" }
bitflags = "1.2.1"
measureme = "0.7.1"
2020-04-10 15:42:19 -05:00
libc = "0.2"
stacker = "0.1.9"
[dependencies.parking_lot]
version = "0.10"
features = ["nightly"]
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["fileapi", "psapi"] }