Skip to content

Rollup of 11 pull requests #82911

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 28 commits into from
Mar 9, 2021
Merged
Changes from 2 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
2a57a5d
Typo fix: cargo cov -> cargo profdata
amaurremi Mar 5, 2021
6052211
Update minifier dependency version
GuillaumeGomez Mar 4, 2021
6e4dcea
Handle negative literals in cast overflow warning
JohnTitor Mar 6, 2021
c40ef91
Add note about the `#[doc(no-inline)]` usage
jfrimmel Mar 7, 2021
e62a543
Account for `if (let pat = expr) {}`
estebank Mar 7, 2021
23bcea4
Add help suggesting `matches` to `let_chains` lint
estebank Mar 7, 2021
ac7f9cc
diagnostics: Differentiate between edition meanings of ::foo in resol…
Manishearth Mar 7, 2021
9d5d669
diagnostics: Differentiate between edition meanings of ::foo in resol…
Manishearth Mar 7, 2021
63fb294
Add help for `matches` for `if let` in arm guard
estebank Mar 7, 2021
9386370
add codegen tests for some issues closed by LLVM 12
erikdesjardins Mar 7, 2021
aa7ac6e
Remove notes, increase S/N ratio
estebank Mar 7, 2021
0eeae1a
diagnostics: Don't mention external crates when hitting import errors…
Manishearth Mar 7, 2021
69a37a6
Add documentation for string->Cow conversions
notriddle Mar 2, 2021
2aa28ad
Grammar Fixes
daggy1234 Mar 8, 2021
84bfa38
[.mailmap] Add entry for Ramkumar Ramachandra
artagnon Mar 8, 2021
bc1fbf5
Move rustdoc UI tests into a subdirectory
jyn514 Mar 5, 2021
655155c
Update library/core/src/array/mod.rs
daggy1234 Mar 8, 2021
3114e2b
Rollup merge of #82711 - notriddle:string-cow-docs, r=Mark-Simulacrum
m-ou-se Mar 8, 2021
6e9a94a
Rollup merge of #82767 - GuillaumeGomez:update-minifier-crate-version…
m-ou-se Mar 8, 2021
5ff52cb
Rollup merge of #82800 - jyn514:group-rustdoc-tests, r=Mark-Simulacrum
m-ou-se Mar 8, 2021
09b17a1
Rollup merge of #82810 - amaurremi:source-based-coverage-typo, r=ehuss
m-ou-se Mar 8, 2021
0ee2f4c
Rollup merge of #82829 - JohnTitor:handle-neg-val, r=estebank
m-ou-se Mar 8, 2021
6a55aa1
Rollup merge of #82854 - estebank:issue-82827, r=oli-obk
m-ou-se Mar 8, 2021
a55b192
Rollup merge of #82870 - jfrimmel:improve-docs, r=jyn514
m-ou-se Mar 8, 2021
a5035c9
Rollup merge of #82874 - erikdesjardins:cgtests, r=nagisa
m-ou-se Mar 8, 2021
3908eec
Rollup merge of #82881 - Manishearth:crate-root, r=estebank
m-ou-se Mar 8, 2021
2d3ba78
Rollup merge of #82888 - Daggy1234:patch-1, r=joshtriplett
m-ou-se Mar 8, 2021
54add8d
Rollup merge of #82897 - artagnon:patch-2, r=joshtriplett
m-ou-se Mar 8, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock
Original file line number Diff line number Diff line change
@@ -2214,9 +2214,9 @@ dependencies = [

[[package]]
name = "minifier"
version = "0.0.33"
version = "0.0.39"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70bf0db2475f5e627787da77ca52fe33c294063f49f4134b8bc662eedb5e7332"
checksum = "6cdf618de5c9c98d4a7b2e0d1f1e44f82a19196cfd94040bb203621c25d28d98"
dependencies = [
"macro-utils",
]
2 changes: 1 addition & 1 deletion src/librustdoc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ path = "lib.rs"
[dependencies]
arrayvec = { version = "0.5.1", default-features = false }
pulldown-cmark = { version = "0.8", default-features = false }
minifier = "0.0.33"
minifier = "0.0.39"
rayon = { version = "0.3.0", package = "rustc-rayon" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"