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