]> git.lizzy.rs Git - rust.git/blob - src/tools/rustdoc/Cargo.toml
Auto merge of #82559 - tmiasko:inlined, r=petrochenkov
[rust.git] / src / tools / rustdoc / Cargo.toml
1 [package]
2 name = "rustdoc-tool"
3 version = "0.0.0"
4 authors = ["The Rust Project Developers"]
5 edition = "2018"
6
7 # Cargo adds a number of paths to the dylib search path on windows, which results in
8 # the wrong rustdoc being executed. To avoid the conflicting rustdocs, we name the "tool"
9 # rustdoc a different name.
10 [[bin]]
11 name = "rustdoc_tool_binary"
12 path = "main.rs"
13
14 [dependencies]
15 rustdoc = { path = "../../librustdoc" }