rust/src/librustc_data_structures/Cargo.toml

42 lines
1.2 KiB
TOML
Raw Normal View History

[package]
authors = ["The Rust Project Developers"]
name = "rustc_data_structures"
version = "0.0.0"
2019-02-08 16:36:22 +00:00
edition = "2018"
[lib]
name = "rustc_data_structures"
path = "lib.rs"
doctest = false
[dependencies]
ena = "0.14"
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" }
lazy_static = "1"
once_cell = { version = "1", features = ["parking_lot"] }
2020-06-02 17:03:40 +00:00
rustc_serialize = { path = "../librustc_serialize" }
rustc_macros = { path = "../librustc_macros" }
2020-06-02 17:19:49 +00: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-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" }
bitflags = "1.2.1"
measureme = "0.7.1"
2020-04-10 20:42:19 +00:00
libc = "0.2"
stacker = "0.1.11"
tempfile = "3.0.5"
[dependencies.parking_lot]
version = "0.10"
features = ["nightly"]
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["fileapi", "psapi"] }