]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/Cargo.toml
Auto merge of #42394 - ollie27:rustdoc_deref_box, r=QuietMisdreavus
[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 env_logger = { version = "0.4", default-features = false }
15 log = "0.3"
16 rustc = { path = "../librustc" }
17 rustc_back = { path = "../librustc_back" }
18 rustc_data_structures = { path = "../librustc_data_structures" }
19 rustc_driver = { path = "../librustc_driver" }
20 rustc_errors = { path = "../librustc_errors" }
21 rustc_lint = { path = "../librustc_lint" }
22 rustc_metadata = { path = "../librustc_metadata" }
23 rustc_resolve = { path = "../librustc_resolve" }
24 rustc_typeck = { path = "../librustc_typeck" }
25 rustc_trans = { path = "../librustc_trans" }
26 serialize = { path = "../libserialize" }
27 syntax = { path = "../libsyntax" }
28 syntax_pos = { path = "../libsyntax_pos" }
29 pulldown-cmark = { version = "0.0.14", default-features = false }
30
31 [build-dependencies]
32 build_helper = { path = "../build_helper" }
33 gcc = "0.3.50"