]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_codegen_ssa/Cargo.toml
New upstream version 1.54.0+dfsg1
[rustc.git] / compiler / rustc_codegen_ssa / Cargo.toml
CommitLineData
1b1a35ee
XL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_codegen_ssa"
4version = "0.0.0"
5edition = "2018"
6
7[lib]
8test = false
9
10[dependencies]
11bitflags = "1.2.1"
17df50a5 12cc = "1.0.68"
5869c6ff 13itertools = "0.9"
1b1a35ee
XL
14tracing = "0.1"
15libc = "0.2.50"
cdc7bbd5
XL
16jobserver = "0.1.22"
17tempfile = "3.2"
1b1a35ee
XL
18pathdiff = "0.2.0"
19
20rustc_serialize = { path = "../rustc_serialize" }
21rustc_ast = { path = "../rustc_ast" }
22rustc_span = { path = "../rustc_span" }
23rustc_middle = { path = "../rustc_middle" }
24rustc_apfloat = { path = "../rustc_apfloat" }
25rustc_attr = { path = "../rustc_attr" }
26rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
17df50a5 27rustc_data_structures = { path = "../rustc_data_structures" }
1b1a35ee
XL
28rustc_errors = { path = "../rustc_errors" }
29rustc_fs_util = { path = "../rustc_fs_util" }
30rustc_hir = { path = "../rustc_hir" }
31rustc_incremental = { path = "../rustc_incremental" }
32rustc_index = { path = "../rustc_index" }
33rustc_macros = { path = "../rustc_macros" }
34rustc_target = { path = "../rustc_target" }
35rustc_session = { path = "../rustc_session" }
17df50a5
XL
36
37[dependencies.object]
38version = "0.25.2"
39default-features = false
40features = ["read_core", "elf", "macho", "pe", "unaligned", "archive", "write"]