]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_codegen_ssa/Cargo.toml
New upstream version 1.68.2+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]
487cf647 10ar_archive_writer = "0.1.1"
1b1a35ee 11bitflags = "1.2.1"
136023e0 12cc = "1.0.69"
5e7ed085 13itertools = "0.10.1"
1b1a35ee
XL
14tracing = "0.1"
15libc = "0.2.50"
cdc7bbd5
XL
16jobserver = "0.1.22"
17tempfile = "3.2"
f25598a0 18thorin-dwp = "0.4"
1b1a35ee 19pathdiff = "0.2.0"
923072b8 20serde_json = "1.0.59"
a2a8927a 21snap = "1"
064997fb 22smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
94222f64 23regex = "1.4"
1b1a35ee
XL
24
25rustc_serialize = { path = "../rustc_serialize" }
a2a8927a 26rustc_arena = { path = "../rustc_arena" }
1b1a35ee
XL
27rustc_ast = { path = "../rustc_ast" }
28rustc_span = { path = "../rustc_span" }
29rustc_middle = { path = "../rustc_middle" }
f25598a0 30rustc_type_ir = { path = "../rustc_type_ir" }
1b1a35ee
XL
31rustc_attr = { path = "../rustc_attr" }
32rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
17df50a5 33rustc_data_structures = { path = "../rustc_data_structures" }
1b1a35ee
XL
34rustc_errors = { path = "../rustc_errors" }
35rustc_fs_util = { path = "../rustc_fs_util" }
36rustc_hir = { path = "../rustc_hir" }
37rustc_incremental = { path = "../rustc_incremental" }
38rustc_index = { path = "../rustc_index" }
39rustc_macros = { path = "../rustc_macros" }
c295e0f8
XL
40rustc_metadata = { path = "../rustc_metadata" }
41rustc_query_system = { path = "../rustc_query_system" }
1b1a35ee
XL
42rustc_target = { path = "../rustc_target" }
43rustc_session = { path = "../rustc_session" }
064997fb 44rustc_const_eval = { path = "../rustc_const_eval" }
17df50a5
XL
45
46[dependencies.object]
f25598a0 47version = "0.30.1"
17df50a5
XL
48default-features = false
49features = ["read_core", "elf", "macho", "pe", "unaligned", "archive", "write"]