32 lines
925 B
TOML
32 lines
925 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustdoc"
|
|
version = "0.0.0"
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "rustdoc"
|
|
path = "lib.rs"
|
|
crate-type = ["dylib"]
|
|
|
|
[dependencies]
|
|
arena = { path = "../libarena" }
|
|
rustc = { path = "../librustc" }
|
|
rustc_back = { path = "../librustc_back" }
|
|
rustc_const_eval = { path = "../librustc_const_eval" }
|
|
rustc_driver = { path = "../librustc_driver" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
rustc_errors = { path = "../librustc_errors" }
|
|
rustc_lint = { path = "../librustc_lint" }
|
|
rustc_metadata = { path = "../librustc_metadata" }
|
|
rustc_resolve = { path = "../librustc_resolve" }
|
|
rustc_trans = { path = "../librustc_trans" }
|
|
serialize = { path = "../libserialize" }
|
|
syntax = { path = "../libsyntax" }
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
|
log = { path = "../liblog" }
|
|
|
|
[build-dependencies]
|
|
build_helper = { path = "../build_helper" }
|
|
gcc = "0.3.27"
|