2016-01-21 15:19:23 -08:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustdoc"
|
|
|
|
version = "0.0.0"
|
2017-04-14 01:23:14 +02:00
|
|
|
build = "build.rs"
|
2016-01-21 15:19:23 -08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustdoc"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["dylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
arena = { path = "../libarena" }
|
2017-02-15 07:57:59 -08:00
|
|
|
env_logger = { version = "0.4", default-features = false }
|
|
|
|
log = "0.3"
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc = { path = "../librustc" }
|
|
|
|
rustc_back = { path = "../librustc_back" }
|
2016-08-25 20:48:13 -04:00
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
2017-02-15 07:57:59 -08:00
|
|
|
rustc_driver = { path = "../librustc_driver" }
|
2016-06-21 18:08:13 -04:00
|
|
|
rustc_errors = { path = "../librustc_errors" }
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc_lint = { path = "../librustc_lint" }
|
|
|
|
rustc_metadata = { path = "../librustc_metadata" }
|
|
|
|
rustc_resolve = { path = "../librustc_resolve" }
|
2017-05-03 11:53:06 -04:00
|
|
|
rustc_typeck = { path = "../librustc_typeck" }
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc_trans = { path = "../librustc_trans" }
|
|
|
|
serialize = { path = "../libserialize" }
|
|
|
|
syntax = { path = "../libsyntax" }
|
2016-06-21 18:08:13 -04:00
|
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
2017-03-17 01:05:21 +01:00
|
|
|
pulldown-cmark = { version = "0.0.14", default-features = false }
|
2016-01-21 15:19:23 -08:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
build_helper = { path = "../build_helper" }
|
2017-05-23 19:02:23 -07:00
|
|
|
gcc = "0.3.50"
|