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.
This commit is contained in:
Yuki Okushi 2020-12-13 11:05:47 +09:00 committed by GitHub
commit 424e44af00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 6 deletions

View File

@ -725,9 +725,6 @@ checksum = "9a21fa21941700a3cd8fcb4091f361a6a712fac632f85d9f487cc892045d55c6"
[[package]]
name = "coverage_test_macros"
version = "0.0.0"
dependencies = [
"proc-macro2",
]
[[package]]
name = "cpuid-bool"

View File

@ -7,6 +7,3 @@ edition = "2018"
[lib]
proc-macro = true
doctest = false
[dependencies]
proc-macro2 = "1"