rust/compiler/rustc_data_structures/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.6 KiB
TOML
Raw Normal View History

[package]
name = "rustc_data_structures"
version = "0.0.0"
2025-02-20 18:37:58 +00:00
edition = "2024"
[dependencies]
# tidy-alphabetical-start
arrayvec = { version = "0.7", default-features = false }
bitflags = "2.4.1"
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"
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"
rustc-hash = "2.0.0"
2025-03-27 00:19:52 +01:00
rustc-rayon-core = { version = "0.5.0" }
rustc-stable-hash = { version = "0.1.0", features = ["nightly"] }
rustc_arena = { path = "../rustc_arena" }
rustc_graphviz = { path = "../rustc_graphviz" }
rustc_hashes = { path = "../rustc_hashes" }
2020-08-27 22:58:48 -05:00
rustc_index = { path = "../rustc_index", package = "rustc_index" }
rustc_macros = { path = "../rustc_macros" }
rustc_serialize = { path = "../rustc_serialize" }
smallvec = { version = "1.8.1", features = ["const_generics", "union", "may_dangle"] }
stacker = "0.1.17"
2021-04-23 15:33:09 -07:00
tempfile = "3.2"
thin-vec = "0.2.12"
tracing = "0.1"
# tidy-alphabetical-end
[dependencies.hashbrown]
version = "0.15.2"
default-features = false
features = ["nightly"] # for may_dangle
[dependencies.parking_lot]
2023-08-03 16:05:26 +03:00
version = "0.12"
[target.'cfg(windows)'.dependencies.windows]
version = "0.59.0"
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_ProcessStatus",
"Win32_System_Threading",
]
[target.'cfg(unix)'.dependencies]
# tidy-alphabetical-start
libc = "0.2"
# tidy-alphabetical-end
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# tidy-alphabetical-start
memmap2 = "0.2.1"
# tidy-alphabetical-end
[target.'cfg(not(target_has_atomic = "64"))'.dependencies]
portable-atomic = "1.5.1"