blob: c4101f72cc2da64fe6faf3a17298f1e1806d091a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[package]
name = "rustdoc-tool"
version = "0.0.0"
edition = "2021"
# 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" }
[features]
jemalloc = ['rustdoc/jemalloc']
|