about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2020-12-13 11:05:47 +0900
committerGitHub <noreply@github.com>2020-12-13 11:05:47 +0900
commit424e44af002ce3708400dc741ab4bddf55f17940 (patch)
tree3b1c76992dcbca86b305441da944d19c38c3f542
parent5115bbf1dd0564897dc5e2b1c342bc47f8d8a7c3 (diff)
parent600efe7f1069029f57430c5e4994c58b2065178c (diff)
downloadrust-424e44af002ce3708400dc741ab4bddf55f17940.tar.gz
rust-424e44af002ce3708400dc741ab4bddf55f17940.zip
Rollup merge of #79984 - Nadrieril:remove-unused-dep, r=jyn514
Remove an unused dependency that made `rustdoc` crash

Whilst struggling with https://github.com/rust-lang/rust/issues/79980 I discovered that this dependency was unused, and that made rustdoc crash. This PR removes it.
-rw-r--r--Cargo.lock3
-rw-r--r--compiler/rustc_mir/src/transform/coverage/test_macros/Cargo.toml3
2 files changed, 0 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 59525a29a80..12f9e19cf18 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -725,9 +725,6 @@ checksum = "9a21fa21941700a3cd8fcb4091f361a6a712fac632f85d9f487cc892045d55c6"
 [[package]]
 name = "coverage_test_macros"
 version = "0.0.0"
-dependencies = [
- "proc-macro2",
-]
 
 [[package]]
 name = "cpuid-bool"
diff --git a/compiler/rustc_mir/src/transform/coverage/test_macros/Cargo.toml b/compiler/rustc_mir/src/transform/coverage/test_macros/Cargo.toml
index a9d6f0c803d..eda1ced001c 100644
--- a/compiler/rustc_mir/src/transform/coverage/test_macros/Cargo.toml
+++ b/compiler/rustc_mir/src/transform/coverage/test_macros/Cargo.toml
@@ -7,6 +7,3 @@ edition = "2018"
 [lib]
 proc-macro = true
 doctest = false
-
-[dependencies]
-proc-macro2 = "1"