summary refs log tree commit diff
path: root/src/tools/rustdoc/Cargo.toml
blob: 344f617ef95bc069da4e78c66caf95e98d14da91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[package]
name = "rustdoc-tool"
version = "0.0.0"
authors = ["The Rust Project Developers"]

# Cargo adds a number of paths to the dylib search path on windows, which results in
# the wrong rustdoc being executed. To avoid the conflicting rustdocs, we name the "tool"
# rustdoc a different name.
[[bin]]
name = "rustdoc-tool-binary"
path = "main.rs"

[dependencies]
rustdoc = { path = "../../librustdoc" }