]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_data_structures/Cargo.toml
New upstream version 1.54.0+dfsg1
[rustc.git] / compiler / rustc_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]
416331ca 8doctest = false
7453a54e
SL
9
10[dependencies]
cdc7bbd5 11arrayvec = { version = "0.7", default-features = false }
f9f354fc 12ena = "0.14"
3dfed10e
XL
13indexmap = "1.5.1"
14tracing = "0.1"
48663c56 15jobserver_crate = { version = "0.1.13", package = "jobserver" }
1b1a35ee
XL
16rustc_serialize = { path = "../rustc_serialize" }
17rustc_macros = { path = "../rustc_macros" }
18rustc_graphviz = { path = "../rustc_graphviz" }
ff7c6d11 19cfg-if = "0.1.2"
cdc7bbd5 20crossbeam-utils = { version = "0.8", features = ["nightly"] }
ff7c6d11 21stable_deref_trait = "1.0.0"
6a06907d
XL
22rayon = { version = "0.3.1", package = "rustc-rayon" }
23rayon-core = { version = "0.3.1", package = "rustc-rayon-core" }
f035d41b 24rustc-hash = "1.1.0"
6a06907d 25smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
1b1a35ee 26rustc_index = { path = "../rustc_index", package = "rustc_index" }
60c5eb7d 27bitflags = "1.2.1"
6a06907d 28measureme = "9.1.0"
ba9703b0 29libc = "0.2"
1b1a35ee 30stacker = "0.1.12"
cdc7bbd5 31tempfile = "3.2"
83c7162d
XL
32
33[dependencies.parking_lot]
1b1a35ee 34version = "0.11"
dfeec247
XL
35
36[target.'cfg(windows)'.dependencies]
17df50a5 37winapi = { version = "0.3", features = ["fileapi", "psapi", "winerror"] }
cdc7bbd5
XL
38
39[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
40memmap2 = "0.2.1"