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