]> git.lizzy.rs Git - rust.git/blob - src/librustc/Cargo.toml
Rollup merge of #41957 - llogiq:clippy-libsyntax, r=petrochenkov
[rust.git] / src / librustc / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc"
4 version = "0.0.0"
5
6 [lib]
7 name = "rustc"
8 path = "lib.rs"
9 crate-type = ["dylib"]
10
11 [dependencies]
12 arena = { path = "../libarena" }
13 fmt_macros = { path = "../libfmt_macros" }
14 graphviz = { path = "../libgraphviz" }
15 log = "0.3"
16 owning_ref = "0.3.3"
17 rustc_back = { path = "../librustc_back" }
18 rustc_bitflags = { path = "../librustc_bitflags" }
19 rustc_const_math = { path = "../librustc_const_math" }
20 rustc_data_structures = { path = "../librustc_data_structures" }
21 rustc_errors = { path = "../librustc_errors" }
22 serialize = { path = "../libserialize" }
23 syntax = { path = "../libsyntax" }
24 syntax_pos = { path = "../libsyntax_pos" }