2020-08-28 03:58:48 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_codegen_ssa"
|
|
|
|
version = "0.0.0"
|
2021-09-19 16:49:55 +00:00
|
|
|
edition = "2021"
|
2020-08-28 03:58:48 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-start
|
2024-08-19 17:33:24 +00:00
|
|
|
ar_archive_writer = "0.4.2"
|
2024-04-14 07:51:49 +00:00
|
|
|
arrayvec = { version = "0.7", default-features = false }
|
2023-12-30 16:09:02 +00:00
|
|
|
bitflags = "2.4.1"
|
2025-01-18 21:55:31 +00:00
|
|
|
bstr = "1.11.3"
|
2024-12-19 10:49:52 +00:00
|
|
|
# Pinned so `cargo update` bumps don't cause breakage. Please also update the
|
|
|
|
# `cc` in `rustc_llvm` if you update the `cc` here.
|
2025-01-03 11:51:13 +00:00
|
|
|
cc = "=1.2.7"
|
2024-04-14 07:51:49 +00:00
|
|
|
either = "1.5.0"
|
2024-02-23 13:37:47 +00:00
|
|
|
itertools = "0.12"
|
2020-08-28 03:58:48 +00:00
|
|
|
pathdiff = "0.2.0"
|
2021-07-30 19:18:14 +00:00
|
|
|
regex = "1.4"
|
2024-10-09 00:27:32 +00:00
|
|
|
rustc_abi = { path = "../rustc_abi" }
|
2021-12-03 14:24:05 +00:00
|
|
|
rustc_arena = { path = "../rustc_arena" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
2024-10-09 12:24:15 +00:00
|
|
|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
2024-12-13 13:47:11 +00:00
|
|
|
rustc_attr_parsing = { path = "../rustc_attr_parsing" }
|
2021-05-24 22:34:12 +00:00
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_fs_util = { path = "../rustc_fs_util" }
|
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
2024-10-16 23:14:01 +00:00
|
|
|
rustc_hir_pretty = { path = "../rustc_hir_pretty" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_incremental = { path = "../rustc_incremental" }
|
|
|
|
rustc_index = { path = "../rustc_index" }
|
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2021-09-24 16:15:36 +00:00
|
|
|
rustc_metadata = { path = "../rustc_metadata" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
2020-11-14 15:48:54 +00:00
|
|
|
rustc_query_system = { path = "../rustc_query_system" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_session = { path = "../rustc_session" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_span = { path = "../rustc_span" }
|
|
|
|
rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
|
|
|
|
rustc_target = { path = "../rustc_target" }
|
2024-09-28 18:16:05 +00:00
|
|
|
rustc_trait_selection = { path = "../rustc_trait_selection" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_type_ir = { path = "../rustc_type_ir" }
|
|
|
|
serde_json = "1.0.59"
|
|
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
|
|
|
tempfile = "3.2"
|
|
|
|
thin-vec = "0.2.12"
|
2024-09-24 13:14:49 +00:00
|
|
|
thorin-dwp = "0.8"
|
2023-10-20 02:37:29 +00:00
|
|
|
tracing = "0.1"
|
2024-11-25 15:06:43 +00:00
|
|
|
wasm-encoder = "0.219"
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-end
|
2021-05-07 16:57:22 +00:00
|
|
|
|
2023-04-22 10:38:18 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-start
|
2023-04-22 10:38:18 +00:00
|
|
|
libc = "0.2.50"
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-end
|
2023-04-22 10:38:18 +00:00
|
|
|
|
2021-05-07 16:57:22 +00:00
|
|
|
[dependencies.object]
|
2024-07-17 11:33:20 +00:00
|
|
|
version = "0.36.2"
|
2021-05-07 16:57:22 +00:00
|
|
|
default-features = false
|
2024-02-02 21:26:18 +00:00
|
|
|
features = ["read_core", "elf", "macho", "pe", "xcoff", "unaligned", "archive", "write", "wasm"]
|
2023-04-20 07:58:14 +00:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
2025-01-14 13:57:04 +00:00
|
|
|
version = "0.59.0"
|
2023-04-20 07:58:14 +00:00
|
|
|
features = ["Win32_Globalization"]
|