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

# 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" }