]> git.lizzy.rs Git - rust.git/blob - src/librustc/Cargo.toml
Auto merge of #67596 - Mark-Simulacrum:tidy-silence-rustfmt, r=Centril
[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 arena = { path = "../libarena" }
14 bitflags = "1.2.1"
15 fmt_macros = { path = "../libfmt_macros" }
16 graphviz = { path = "../libgraphviz" }
17 jobserver = "0.1"
18 num_cpus = "1.0"
19 scoped-tls = "1.0"
20 log = { version = "0.4", features = ["release_max_level_info", "std"] }
21 rustc-rayon = "0.3.0"
22 rustc-rayon-core = "0.3.0"
23 polonius-engine = "0.11.0"
24 rustc_apfloat = { path = "../librustc_apfloat" }
25 rustc_feature = { path = "../librustc_feature" }
26 rustc_target = { path = "../librustc_target" }
27 rustc_macros = { path = "../librustc_macros" }
28 rustc_data_structures = { path = "../librustc_data_structures" }
29 rustc_index = { path = "../librustc_index" }
30 errors = { path = "../librustc_errors", package = "rustc_errors" }
31 rustc_serialize = { path = "../libserialize", package = "serialize" }
32 syntax = { path = "../libsyntax" }
33 syntax_pos = { path = "../libsyntax_pos" }
34 backtrace = "0.3.40"
35 parking_lot = "0.9"
36 byteorder = { version = "1.3" }
37 chalk-engine = { version = "0.9.0", default-features=false }
38 rustc_fs_util = { path = "../librustc_fs_util" }
39 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
40 measureme = "0.5"
41 rustc_error_codes = { path = "../librustc_error_codes" }
42 rustc_session = { path = "../librustc_session" }