]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/Cargo.toml
Refactor `proc_macro::TokenStream` to use `syntax::tokenstream::TokenStream`; fix...
[rust.git] / src / librustdoc / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustdoc"
4 version = "0.0.0"
5 build = "build.rs"
6
7 [lib]
8 name = "rustdoc"
9 path = "lib.rs"
10 crate-type = ["dylib"]
11
12 [dependencies]
13 arena = { path = "../libarena" }
14 rustc = { path = "../librustc" }
15 rustc_back = { path = "../librustc_back" }
16 rustc_const_eval = { path = "../librustc_const_eval" }
17 rustc_driver = { path = "../librustc_driver" }
18 rustc_data_structures = { path = "../librustc_data_structures" }
19 rustc_errors = { path = "../librustc_errors" }
20 rustc_lint = { path = "../librustc_lint" }
21 rustc_metadata = { path = "../librustc_metadata" }
22 rustc_resolve = { path = "../librustc_resolve" }
23 rustc_trans = { path = "../librustc_trans" }
24 serialize = { path = "../libserialize" }
25 syntax = { path = "../libsyntax" }
26 syntax_pos = { path = "../libsyntax_pos" }
27 log = { path = "../liblog" }
28
29 [build-dependencies]
30 build_helper = { path = "../build_helper" }
31 gcc = "0.3.27"