]>
Commit | Line | Data |
---|---|---|
7453a54e SL |
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" } | |
7453a54e SL |
14 | rustc = { path = "../librustc" } |
15 | rustc_back = { path = "../librustc_back" } | |
54a0048b | 16 | rustc_const_eval = { path = "../librustc_const_eval" } |
7453a54e | 17 | rustc_driver = { path = "../librustc_driver" } |
7453a54e SL |
18 | rustc_lint = { path = "../librustc_lint" } |
19 | rustc_metadata = { path = "../librustc_metadata" } | |
20 | rustc_resolve = { path = "../librustc_resolve" } | |
21 | rustc_trans = { path = "../librustc_trans" } | |
22 | serialize = { path = "../libserialize" } | |
23 | syntax = { path = "../libsyntax" } | |
7453a54e SL |
24 | log = { path = "../liblog" } |
25 | ||
26 | [build-dependencies] | |
27 | build_helper = { path = "../build_helper" } | |
28 | gcc = "0.3" |