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