rust/src/librustc_data_structures/Cargo.toml

31 lines
822 B
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]
2019-03-25 10:45:44 -05:00
ena = "0.13"
indexmap = "1"
log = "0.4"
2019-04-08 13:44:31 -05:00
jobserver_crate = { version = "0.1.13", package = "jobserver" }
lazy_static = "1"
rustc_serialize = { path = "../libserialize", package = "serialize" }
graphviz = { path = "../libgraphviz" }
cfg-if = "0.1.2"
2019-03-15 06:17:11 -05:00
crossbeam-utils = { version = "0.6.5", features = ["nightly"] }
stable_deref_trait = "1.0.0"
2019-04-25 15:50:41 -05:00
rayon = { version = "0.2.0", package = "rustc-rayon" }
rayon-core = { version = "0.2.0", package = "rustc-rayon-core" }
rustc-hash = "1.0.1"
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
[dependencies.parking_lot]
version = "0.9"
features = ["nightly"]