2020-08-27 22:58:48 -05:00
|
|
|
[package]
|
|
|
|
name = "rustc_codegen_ssa"
|
|
|
|
version = "0.0.0"
|
2021-09-19 12:49:55 -04:00
|
|
|
edition = "2021"
|
2020-08-27 22:58:48 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
test = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bitflags = "1.2.1"
|
2021-07-13 17:58:50 +09:00
|
|
|
cc = "1.0.69"
|
2021-02-03 18:41:30 -08:00
|
|
|
itertools = "0.9"
|
2020-08-27 22:58:48 -05:00
|
|
|
tracing = "0.1"
|
|
|
|
libc = "0.2.50"
|
2021-04-21 22:02:54 +02:00
|
|
|
jobserver = "0.1.22"
|
2021-04-23 15:33:09 -07:00
|
|
|
tempfile = "3.2"
|
2020-08-27 22:58:48 -05:00
|
|
|
pathdiff = "0.2.0"
|
2021-07-14 15:50:42 +02:00
|
|
|
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
|
2021-07-30 12:18:14 -07:00
|
|
|
regex = "1.4"
|
2020-08-27 22:58:48 -05:00
|
|
|
|
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
|
|
|
rustc_span = { path = "../rustc_span" }
|
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
|
|
|
rustc_apfloat = { path = "../rustc_apfloat" }
|
|
|
|
rustc_attr = { path = "../rustc_attr" }
|
|
|
|
rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
|
2021-05-24 23:34:12 +01: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 18:15:36 +02:00
|
|
|
rustc_metadata = { path = "../rustc_metadata" }
|
2020-11-14 16:48:54 +01: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 18:57:22 +02:00
|
|
|
|
|
|
|
[dependencies.object]
|
2021-08-30 16:10:19 -04:00
|
|
|
version = "0.26.2"
|
2021-05-07 18:57:22 +02:00
|
|
|
default-features = false
|
2021-04-22 11:53:33 -07:00
|
|
|
features = ["read_core", "elf", "macho", "pe", "unaligned", "archive", "write"]
|