2020-08-27 22:58:48 -05:00
|
|
|
[package]
|
|
|
|
name = "rustc_codegen_ssa"
|
|
|
|
version = "0.0.0"
|
2021-09-19 11:49:55 -05:00
|
|
|
edition = "2021"
|
2020-08-27 22:58:48 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2023-08-14 09:57:38 -05:00
|
|
|
ar_archive_writer = "0.1.5"
|
2020-08-27 22:58:48 -05:00
|
|
|
bitflags = "1.2.1"
|
2021-07-13 03:58:50 -05:00
|
|
|
cc = "1.0.69"
|
2022-03-04 11:54:28 -06:00
|
|
|
itertools = "0.10.1"
|
2020-08-27 22:58:48 -05:00
|
|
|
tracing = "0.1"
|
2021-04-21 15:02:54 -05:00
|
|
|
jobserver = "0.1.22"
|
2021-04-23 17:33:09 -05:00
|
|
|
tempfile = "3.2"
|
2023-08-14 09:57:38 -05:00
|
|
|
thorin-dwp = "0.7"
|
2020-08-27 22:58:48 -05:00
|
|
|
pathdiff = "0.2.0"
|
2022-05-06 10:20:42 -05:00
|
|
|
serde_json = "1.0.59"
|
2022-06-26 17:48:55 -05:00
|
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
2021-07-30 14:18:14 -05:00
|
|
|
regex = "1.4"
|
2020-08-27 22:58:48 -05:00
|
|
|
|
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
2021-12-03 08:24:05 -06:00
|
|
|
rustc_arena = { path = "../rustc_arena" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
|
|
|
rustc_span = { path = "../rustc_span" }
|
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
2022-11-17 07:53:14 -06:00
|
|
|
rustc_type_ir = { path = "../rustc_type_ir" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_attr = { path = "../rustc_attr" }
|
2023-04-16 07:33:00 -05:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
|
2021-05-24 17:34:12 -05:00
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
|
|
|
rustc_fs_util = { path = "../rustc_fs_util" }
|
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
|
|
|
rustc_incremental = { path = "../rustc_incremental" }
|
|
|
|
rustc_index = { path = "../rustc_index" }
|
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2021-09-24 11:15:36 -05:00
|
|
|
rustc_metadata = { path = "../rustc_metadata" }
|
2020-11-14 09:48:54 -06:00
|
|
|
rustc_query_system = { path = "../rustc_query_system" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_target = { path = "../rustc_target" }
|
|
|
|
rustc_session = { path = "../rustc_session" }
|
2021-05-07 11:57:22 -05:00
|
|
|
|
2023-04-22 05:38:18 -05:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
libc = "0.2.50"
|
|
|
|
|
2021-05-07 11:57:22 -05:00
|
|
|
[dependencies.object]
|
2023-08-14 09:57:38 -05:00
|
|
|
version = "0.32.0"
|
2021-05-07 11:57:22 -05:00
|
|
|
default-features = false
|
2023-05-23 03:23:59 -05:00
|
|
|
features = ["read_core", "elf", "macho", "pe", "xcoff", "unaligned", "archive", "write"]
|
2023-04-20 02:58:14 -05:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
2023-05-09 10:20:13 -05:00
|
|
|
version = "0.48.0"
|
2023-04-20 02:58:14 -05:00
|
|
|
features = ["Win32_Globalization"]
|