2016-01-21 17:19:23 -06:00
|
|
|
[package]
|
|
|
|
name = "rustc_data_structures"
|
|
|
|
version = "0.0.0"
|
2021-09-19 11:49:55 -05:00
|
|
|
edition = "2021"
|
2016-01-21 17:19:23 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-start
|
2021-04-21 23:40:29 -05:00
|
|
|
arrayvec = { version = "0.7", default-features = false }
|
2023-12-30 10:09:02 -06:00
|
|
|
bitflags = "2.4.1"
|
2024-01-24 17:36:57 -06:00
|
|
|
either = "1.0"
|
2023-10-19 21:37:29 -05:00
|
|
|
elsa = "=1.7.1"
|
2024-05-06 13:32:39 -05:00
|
|
|
ena = "0.14.3"
|
2024-08-13 18:16:57 -05:00
|
|
|
indexmap = { version = "2.4.0" }
|
2024-02-09 10:11:37 -06:00
|
|
|
jobserver_crate = { version = "0.1.28", package = "jobserver" }
|
2024-01-13 09:32:03 -06:00
|
|
|
measureme = "11"
|
2024-08-24 17:31:10 -05:00
|
|
|
rustc-hash = "2.0.0"
|
2023-03-24 20:12:13 -05:00
|
|
|
rustc-rayon = { version = "0.5.0", optional = true }
|
2024-06-19 14:23:40 -05:00
|
|
|
rustc-stable-hash = { version = "0.1.0", features = ["nightly"] }
|
2023-03-02 20:14:57 -06:00
|
|
|
rustc_arena = { path = "../rustc_arena" }
|
2022-08-16 23:22:30 -05:00
|
|
|
rustc_graphviz = { path = "../rustc_graphviz" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_index = { path = "../rustc_index", package = "rustc_index" }
|
2022-08-16 23:22:30 -05:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
2023-10-19 21:37:29 -05:00
|
|
|
smallvec = { version = "1.8.1", features = ["const_generics", "union", "may_dangle"] }
|
2024-08-26 13:00:24 -05:00
|
|
|
stacker = "0.1.17"
|
2021-04-23 17:33:09 -05:00
|
|
|
tempfile = "3.2"
|
2022-12-05 17:19:32 -06:00
|
|
|
thin-vec = "0.2.12"
|
2022-08-16 23:22:30 -05:00
|
|
|
tracing = "0.1"
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-end
|
2017-12-03 06:49:01 -06:00
|
|
|
|
|
|
|
[dependencies.parking_lot]
|
2023-08-03 08:05:26 -05:00
|
|
|
version = "0.12"
|
2020-01-04 15:46:47 -06:00
|
|
|
|
2023-01-15 12:43:15 -06:00
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
2024-09-24 08:14:49 -05:00
|
|
|
version = "0.57.0"
|
2023-01-15 12:43:15 -06:00
|
|
|
features = [
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Storage_FileSystem",
|
|
|
|
"Win32_System_IO",
|
|
|
|
"Win32_System_ProcessStatus",
|
|
|
|
"Win32_System_Threading",
|
|
|
|
]
|
2021-03-29 04:18:52 -05:00
|
|
|
|
2024-06-12 20:42:52 -05:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
# tidy-alphabetical-start
|
|
|
|
libc = "0.2"
|
|
|
|
# tidy-alphabetical-end
|
|
|
|
|
2021-03-29 04:18:52 -05:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-start
|
2021-03-29 04:18:52 -05:00
|
|
|
memmap2 = "0.2.1"
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-end
|
2022-02-11 14:25:14 -06:00
|
|
|
|
2024-06-28 01:06:36 -05:00
|
|
|
[target.'cfg(not(target_has_atomic = "64"))'.dependencies]
|
2023-11-05 19:58:51 -06:00
|
|
|
portable-atomic = "1.5.1"
|
|
|
|
|
2022-02-11 14:25:14 -06:00
|
|
|
[features]
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-start
|
2024-07-15 11:40:06 -05:00
|
|
|
rustc_use_parallel_compiler = ["indexmap/rustc-rayon", "dep:rustc-rayon"]
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-end
|