Remove librustdoc dependency on log This change should have been included in PR #46386. Since librustdoc doesn't explicitly depend on internal crates (such as librustc_driver) through its Cargo.toml, it ends up using the sysroot to resolve them. By removing the dependency on 'log', we ensure that the syroot is used to resolve `log` as well. This ensures that only one version of log is in use, so that `env_logger::init()` enables all uses of `log!` macros.
20 lines
379 B
TOML
20 lines
379 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustdoc"
|
|
version = "0.0.0"
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "rustdoc"
|
|
path = "lib.rs"
|
|
# SNAP/stage0(cargo)
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
pulldown-cmark = { version = "0.1.0", default-features = false }
|
|
html-diff = "0.0.5"
|
|
tempdir = "0.3"
|
|
|
|
[build-dependencies]
|
|
build_helper = { path = "../build_helper" }
|
|
cc = "1.0.1"
|