]> git.lizzy.rs Git - rust.git/blob - src/librustc/Cargo.toml
compiletest: Do not run debuginfo tests with gdb on msvc targets
[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 scoped-tls = "1.0"
19 log = { version = "0.4", features = ["release_max_level_info", "std"] }
20 rustc-rayon = "0.3.0"
21 rustc-rayon-core = "0.3.0"
22 polonius-engine = "0.11.0"
23 rustc_apfloat = { path = "../librustc_apfloat" }
24 rustc_feature = { path = "../librustc_feature" }
25 rustc_hir = { path = "../librustc_hir" }
26 rustc_target = { path = "../librustc_target" }
27 rustc_macros = { path = "../librustc_macros" }
28 rustc_data_structures = { path = "../librustc_data_structures" }
29 rustc_errors = { path = "../librustc_errors" }
30 rustc_index = { path = "../librustc_index" }
31 rustc_serialize = { path = "../libserialize", package = "serialize" }
32 syntax = { path = "../libsyntax" }
33 rustc_span = { path = "../librustc_span" }
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 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
39 measureme = "0.7.1"
40 rustc_session = { path = "../librustc_session" }