]> git.lizzy.rs Git - rust.git/blob - src/librustc_codegen_ssa/Cargo.toml
pin docs: add some forward references
[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.2.1"
14 cc = "1.0.1"
15 num_cpus = "1.0"
16 memmap = "0.7"
17 log = { package = "tracing", version = "0.1" }
18 libc = "0.2.50"
19 jobserver = "0.1.11"
20 tempfile = "3.1"
21 pathdiff = "0.2.0"
22
23 rustc_serialize = { path = "../librustc_serialize" }
24 rustc_ast = { path = "../librustc_ast" }
25 rustc_span = { path = "../librustc_span" }
26 rustc_middle = { path = "../librustc_middle" }
27 rustc_apfloat = { path = "../librustc_apfloat" }
28 rustc_attr = { path = "../librustc_attr" }
29 rustc_symbol_mangling = { path = "../librustc_symbol_mangling" }
30 rustc_data_structures = { path = "../librustc_data_structures"}
31 rustc_errors = { path = "../librustc_errors" }
32 rustc_fs_util = { path = "../librustc_fs_util" }
33 rustc_hir = { path = "../librustc_hir" }
34 rustc_incremental = { path = "../librustc_incremental" }
35 rustc_index = { path = "../librustc_index" }
36 rustc_target = { path = "../librustc_target" }
37 rustc_session = { path = "../librustc_session" }