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