]> git.lizzy.rs Git - rust.git/blob - src/tools/rustdoc/Cargo.toml
:arrow_up: rust-analyzer
[rust.git] / src / tools / rustdoc / Cargo.toml
1 [package]
2 name = "rustdoc-tool"
3 version = "0.0.0"
4 edition = "2021"
5
6 # Cargo adds a number of paths to the dylib search path on windows, which results in
7 # the wrong rustdoc being executed. To avoid the conflicting rustdocs, we name the "tool"
8 # rustdoc a different name.
9 [[bin]]
10 name = "rustdoc_tool_binary"
11 path = "main.rs"
12
13 [dependencies]
14 rustdoc = { path = "../../librustdoc" }
15
16 [features]
17 jemalloc = ['rustdoc/jemalloc']