]> git.lizzy.rs Git - rust.git/blob - src/librustc/Cargo.toml
Rollup merge of #66280 - stepancheg:union, r=alexcrichton
[rust.git] / src / librustc / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 # Prevent cc from upgrading all the way to 1.0.46,
14 # which fails the build (see e.g. #65445.)
15 cc = "=1.0.37"
16
17 arena = { path = "../libarena" }
18 bitflags = "1.2.1"
19 fmt_macros = { path = "../libfmt_macros" }
20 graphviz = { path = "../libgraphviz" }
21 jobserver = "0.1"
22 num_cpus = "1.0"
23 scoped-tls = "1.0"
24 log = { version = "0.4", features = ["release_max_level_info", "std"] }
25 rustc-rayon = "0.3.0"
26 rustc-rayon-core = "0.3.0"
27 polonius-engine  = "0.10.0"
28 rustc_apfloat = { path = "../librustc_apfloat" }
29 rustc_target = { path = "../librustc_target" }
30 rustc_macros = { path = "../librustc_macros" }
31 rustc_data_structures = { path = "../librustc_data_structures" }
32 rustc_index = { path = "../librustc_index" }
33 errors = { path = "../librustc_errors", package = "rustc_errors" }
34 rustc_serialize = { path = "../libserialize", package = "serialize" }
35 syntax = { path = "../libsyntax" }
36 syntax_pos = { path = "../libsyntax_pos" }
37 backtrace = "0.3.40"
38 parking_lot = "0.9"
39 byteorder = { version = "1.3" }
40 chalk-engine = { version = "0.9.0", default-features=false }
41 rustc_fs_util = { path = "../librustc_fs_util" }
42 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
43 measureme = "0.4"