]> git.proxmox.com Git - rustc.git/blame - src/librustdoc/Cargo.toml
New upstream version 1.13.0+dfsg1
[rustc.git] / src / librustdoc / Cargo.toml
CommitLineData
7453a54e
SL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustdoc"
4version = "0.0.0"
5build = "build.rs"
6
7[lib]
8name = "rustdoc"
9path = "lib.rs"
10crate-type = ["dylib"]
11
12[dependencies]
13arena = { path = "../libarena" }
7453a54e
SL
14rustc = { path = "../librustc" }
15rustc_back = { path = "../librustc_back" }
54a0048b 16rustc_const_eval = { path = "../librustc_const_eval" }
5bcae85e 17rustc_const_math = { path = "../librustc_const_math" }
7453a54e 18rustc_driver = { path = "../librustc_driver" }
9e0c209e 19rustc_data_structures = { path = "../librustc_data_structures" }
3157f602 20rustc_errors = { path = "../librustc_errors" }
7453a54e
SL
21rustc_lint = { path = "../librustc_lint" }
22rustc_metadata = { path = "../librustc_metadata" }
23rustc_resolve = { path = "../librustc_resolve" }
24rustc_trans = { path = "../librustc_trans" }
25serialize = { path = "../libserialize" }
26syntax = { path = "../libsyntax" }
3157f602 27syntax_pos = { path = "../libsyntax_pos" }
7453a54e
SL
28log = { path = "../liblog" }
29
30[build-dependencies]
31build_helper = { path = "../build_helper" }
5bcae85e 32gcc = "0.3.27"