]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_ssa/Cargo.toml
Re-add #[allow(unused)] attr
[rust.git] / compiler / rustc_codegen_ssa / Cargo.toml
1 [package]
2 name = "rustc_codegen_ssa"
3 version = "0.0.0"
4 edition = "2021"
5
6 [lib]
7 test = false
8
9 [dependencies]
10 ar_archive_writer = "0.1.1"
11 bitflags = "1.2.1"
12 cc = "1.0.69"
13 itertools = "0.10.1"
14 tracing = "0.1"
15 libc = "0.2.50"
16 jobserver = "0.1.22"
17 tempfile = "3.2"
18 thorin-dwp = "0.3"
19 pathdiff = "0.2.0"
20 serde_json = "1.0.59"
21 snap = "1"
22 smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
23 regex = "1.4"
24
25 rustc_serialize = { path = "../rustc_serialize" }
26 rustc_arena = { path = "../rustc_arena" }
27 rustc_ast = { path = "../rustc_ast" }
28 rustc_span = { path = "../rustc_span" }
29 rustc_middle = { path = "../rustc_middle" }
30 rustc_type_ir = { path = "../rustc_type_ir" }
31 rustc_attr = { path = "../rustc_attr" }
32 rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
33 rustc_data_structures = { path = "../rustc_data_structures" }
34 rustc_errors = { path = "../rustc_errors" }
35 rustc_fs_util = { path = "../rustc_fs_util" }
36 rustc_hir = { path = "../rustc_hir" }
37 rustc_incremental = { path = "../rustc_incremental" }
38 rustc_index = { path = "../rustc_index" }
39 rustc_macros = { path = "../rustc_macros" }
40 rustc_metadata = { path = "../rustc_metadata" }
41 rustc_query_system = { path = "../rustc_query_system" }
42 rustc_target = { path = "../rustc_target" }
43 rustc_session = { path = "../rustc_session" }
44 rustc_const_eval = { path = "../rustc_const_eval" }
45
46 [dependencies.object]
47 version = "0.29.0"
48 default-features = false
49 features = ["read_core", "elf", "macho", "pe", "unaligned", "archive", "write"]