]> git.lizzy.rs Git - rust.git/blob - src/librustc_codegen_ssa/Cargo.toml
pprust: Do not print spaces before some tokens
[rust.git] / src / librustc_codegen_ssa / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_codegen_ssa"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_codegen_ssa"
9 path = "lib.rs"
10 test = false
11
12 [dependencies]
13 bitflags = "1.0.4"
14 cc = "1.0.1"
15 num_cpus = "1.0"
16 memmap = "0.6"
17 log = "0.4.5"
18 libc = "0.2.44"
19 jobserver = "0.1.11"
20 parking_lot = "0.7"
21 tempfile = "3.0.5"
22
23 rustc_serialize = { path = "../libserialize", package = "serialize" }
24 syntax = { path = "../libsyntax" }
25 syntax_pos = { path = "../libsyntax_pos" }
26 rustc = { path = "../librustc" }
27 rustc_apfloat = { path = "../librustc_apfloat" }
28 rustc_codegen_utils = { path = "../librustc_codegen_utils" }
29 rustc_data_structures = { path = "../librustc_data_structures"}
30 rustc_errors = { path = "../librustc_errors" }
31 rustc_fs_util = { path = "../librustc_fs_util" }
32 rustc_incremental = { path = "../librustc_incremental" }
33 rustc_target = { path = "../librustc_target" }