2020-08-28 03:58:48 +00:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_codegen_ssa"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
test = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bitflags = "1.2.1"
|
2021-05-24 22:34:12 +00:00
|
|
|
cc = "1.0.68"
|
2021-02-04 02:41:30 +00:00
|
|
|
itertools = "0.9"
|
2020-08-28 03:58:48 +00:00
|
|
|
tracing = "0.1"
|
|
|
|
libc = "0.2.50"
|
2021-04-21 20:02:54 +00:00
|
|
|
jobserver = "0.1.22"
|
2021-04-23 22:33:09 +00:00
|
|
|
tempfile = "3.2"
|
2020-08-28 03:58:48 +00:00
|
|
|
pathdiff = "0.2.0"
|
|
|
|
|
|
|
|
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 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" }
|
|
|
|
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" }
|
|
|
|
rustc_target = { path = "../rustc_target" }
|
|
|
|
rustc_session = { path = "../rustc_session" }
|
2021-05-07 16:57:22 +00:00
|
|
|
|
|
|
|
[dependencies.object]
|
|
|
|
version = "0.22.0"
|
|
|
|
default-features = false
|
|
|
|
features = ["read_core", "elf", "macho", "pe", "unaligned", "archive"]
|