]> git.proxmox.com Git - rustc.git/blame - src/librustc_data_structures/Cargo.toml
New upstream version 1.44.1+dfsg1
[rustc.git] / src / librustc_data_structures / Cargo.toml
CommitLineData
7453a54e
SL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_data_structures"
4version = "0.0.0"
9fa01778 5edition = "2018"
7453a54e
SL
6
7[lib]
8name = "rustc_data_structures"
9path = "lib.rs"
416331ca 10doctest = false
7453a54e
SL
11
12[dependencies]
e74abb32 13ena = "0.13.1"
dc9dc135 14indexmap = "1"
ff7c6d11 15log = "0.4"
48663c56 16jobserver_crate = { version = "0.1.13", package = "jobserver" }
532ac7d7 17lazy_static = "1"
416331ca 18rustc_serialize = { path = "../libserialize", package = "serialize" }
0bf4aa26 19graphviz = { path = "../libgraphviz" }
ff7c6d11 20cfg-if = "0.1.2"
ba9703b0 21crossbeam-utils = { version = "0.7", features = ["nightly"] }
ff7c6d11 22stable_deref_trait = "1.0.0"
e74abb32
XL
23rayon = { version = "0.3.0", package = "rustc-rayon" }
24rayon-core = { version = "0.3.0", package = "rustc-rayon-core" }
94b46f34 25rustc-hash = "1.0.1"
60c5eb7d 26smallvec = { version = "1.0", features = ["union", "may_dangle"] }
e74abb32 27rustc_index = { path = "../librustc_index", package = "rustc_index" }
60c5eb7d 28bitflags = "1.2.1"
dfeec247 29measureme = "0.7.1"
ba9703b0 30libc = "0.2"
83c7162d
XL
31
32[dependencies.parking_lot]
ba9703b0 33version = "0.10"
83c7162d 34features = ["nightly"]
dfeec247
XL
35
36[target.'cfg(windows)'.dependencies]
37winapi = { version = "0.3", features = ["fileapi", "psapi"] }