]> git.proxmox.com Git - rustc.git/blob - compiler/rustc_data_structures/Cargo.toml
New upstream version 1.54.0+dfsg1
[rustc.git] / compiler / rustc_data_structures / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_data_structures"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 doctest = false
9
10 [dependencies]
11 arrayvec = { version = "0.7", default-features = false }
12 ena = "0.14"
13 indexmap = "1.5.1"
14 tracing = "0.1"
15 jobserver_crate = { version = "0.1.13", package = "jobserver" }
16 rustc_serialize = { path = "../rustc_serialize" }
17 rustc_macros = { path = "../rustc_macros" }
18 rustc_graphviz = { path = "../rustc_graphviz" }
19 cfg-if = "0.1.2"
20 crossbeam-utils = { version = "0.8", features = ["nightly"] }
21 stable_deref_trait = "1.0.0"
22 rayon = { version = "0.3.1", package = "rustc-rayon" }
23 rayon-core = { version = "0.3.1", package = "rustc-rayon-core" }
24 rustc-hash = "1.1.0"
25 smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
26 rustc_index = { path = "../rustc_index", package = "rustc_index" }
27 bitflags = "1.2.1"
28 measureme = "9.1.0"
29 libc = "0.2"
30 stacker = "0.1.12"
31 tempfile = "3.2"
32
33 [dependencies.parking_lot]
34 version = "0.11"
35
36 [target.'cfg(windows)'.dependencies]
37 winapi = { version = "0.3", features = ["fileapi", "psapi", "winerror"] }
38
39 [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
40 memmap2 = "0.2.1"