rust/src/tools/rustdoc/Cargo.toml
2021-09-20 22:21:42 -04:00

17 lines
425 B
TOML

[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']