]> git.lizzy.rs Git - rust.git/blob - src/librustc/Cargo.toml
Rollup merge of #67873 - Dylan-DPC:feature/change-remove-to-partial, r=Amanieu
[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_hir = { path = "../librustc_hir" }
27 rustc_target = { path = "../librustc_target" }
28 rustc_macros = { path = "../librustc_macros" }
29 rustc_data_structures = { path = "../librustc_data_structures" }
30 rustc_index = { path = "../librustc_index" }
31 errors = { path = "../librustc_errors", package = "rustc_errors" }
32 rustc_serialize = { path = "../libserialize", package = "serialize" }
33 syntax = { path = "../libsyntax" }
34 rustc_span = { path = "../librustc_span" }
35 backtrace = "0.3.40"
36 parking_lot = "0.9"
37 byteorder = { version = "1.3" }
38 chalk-engine = { version = "0.9.0", default-features=false }
39 rustc_fs_util = { path = "../librustc_fs_util" }
40 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
41 measureme = "0.5"
42 rustc_error_codes = { path = "../librustc_error_codes" }
43 rustc_session = { path = "../librustc_session" }