8000 Rollup of 9 pull requests by Centril · Pull Request #70130 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 9 pull requests #70130

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

Closed
wants to merge 35 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
425e7e5
Don't insert panic when generator can not return
jonas-schievink Mar 7, 2020
5ac41a1
Don't insert panic when generator can not unwind
jonas-schievink Mar 7, 2020
46aeef6
Poison generators when any terminator unwinds
jonas-schievink Mar 7, 2020
8d9f633
Change index for SwitchInt case
jonas-schievink Mar 8, 2020
2cbccce
Add test for unnecessary panic branches
jonas-schievink Mar 8, 2020
cb58de8
Apply suggestions from code review
jonas-schievink Mar 8, 2020
543832b
Regenerate tables for Unicode 13.0.0
cuviper Mar 11, 2020
349fcb9
tidy: Use cargo_metadata for license checks.
ehuss Feb 24, 2020
3f45da0
tidy: Check if exceptions are no longer used.
ehuss Feb 24, 2020
be10f14
tidy: check the licenses don't change
ehuss Feb 24, 2020
bc738f2
tidy: Verify the runtime crates don't have license exceptions.
ehuss Feb 24, 2020
3c48c89
tidy: Add some clarifying comments in license checks.
ehuss Feb 24, 2020
2e46faa
tidy: Add `test` to RUNTIME_CRATES.
ehuss Feb 25, 2020
9a53cf3
tidy: Sort WHITELIST.
ehuss Feb 25, 2020
ed0158d
tidy: Remove chalk-engine/chalk-macros.
ehuss Mar 13, 2020
041d97f
unix: Set a guard page at the end of signal stacks
iximeow Mar 13, 2020
0ca2ed3
return a pointer to the end of the valid part of the sigstack, no fur…
iximeow Mar 13, 2020
28eeea6
fix formatting
iximeow Mar 13, 2020
38fa378
Swap inserts to keep the original ordering
jonas-schievink Mar 14, 2020
d4ea327
Make ignore and compile fail signs more visible
GuillaumeGomez Mar 14, 2020
8216a32
remove compilation warning
GuillaumeGomez Mar 14, 2020
51ea260
rustc: don't resolve Instances which would produce malformed shims.
eddyb Feb 9, 2020
bc8ff3f
rustc: tweak comments on InstanceDef.
anyska Mar 11, 2020
af0d6fc
Use copy bound in atomic operations to generate simpler MIR
tmiasko Mar 17, 2020
bb55741
Implement -Zlink-native-libraries
jsgf Mar 18, 2020
d5b6a20
std: Don't abort process when printing panics in tests
alexcrichton Mar 12, 2020
cab955e
Rollup merge of #69036 - eddyb:monoshim, r=nikomatsakis
Centril Mar 19, 2020
51d8b13
Rollup merge of #69443 - ehuss:tidy-license, r=skade,Mark-Simulacrum
Centril Mar 19, 2020
92e9fb0
Rollup merge of #69814 - jonas-schievink:gen-ret-unw, r=Zoxc
Centril Mar 19, 2020
a5d645f
Rollup merge of #69929 - cuviper:unicode-13.0.0, r=Mark-Simulacrum
Centril Mar 19, 2020
b4098a1
Rollup merge of #69959 - alexcrichton:fix-panic-in-print, r=Mark-Simu…
Centril Mar 19, 2020
bed90e4
Rollup merge of #69969 - iximeow:sigstack-guard-page, r=cuviper
Centril Mar 19, 2020
610c7a5
Rollup merge of #70005 - GuillaumeGomez:code-block-signs, r=kinnison
Centril Mar 19, 2020
cde3df2
Rollup merge of #70088 - tmiasko:atomic-copy, r=eddyb
Centril Mar 19, 2020
89dbdc7
Rollup merge of #70095 - jsgf:link-native, r=nagisa
Centril Mar 19, 2020
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
13 changes: 10 additions & 3 deletions src/librustdoc/html/static/rustdoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,7 @@ h3 > .collapse-toggle, h4 > .collapse-toggle {

.information {
position: absolute;
left: -20px;
left: -25px;
margin-top: 7px;
z-index: 1;
}
Expand All @@ -1047,12 +1047,13 @@ h3 > .collapse-toggle, h4 > .collapse-toggle {
width: 120px;
display: none;
text-align: center;
padding: 5px 3px;
padding: 5px 3px 3px 3px;
border-radius: 6px;
margin-left: 5px;
top: -5px;
left: 105%;
z-index: 10;
font-size: 16px;
}

.tooltip:hover .tooltiptext {
Expand All @@ -1063,14 +1064,20 @@ h3 > .collapse-toggle, h4 > .collapse-toggle {
content: " ";
position: absolute;
top: 50%;
left: 11px;
left: 16px;
margin-top: -5px;
border-width: 5px;
border-style: solid;
}

.tooltip.compile_fail, .tooltip.ignore {
font-weight: bold;
font-size: 20px;
}

.tooltip .tooltiptext {
border: 1px solid;
font-weight: normal;
}

pre.rust {
Expand Down
9 changes: 5 additions & 4 deletions src/librustdoc/html/static/themes/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ a.test-arrow:hover{
}

pre.compile_fail {
border-left: 2px solid rgba(255,0,0,.6);
border-left: 2px solid rgba(255,0,0,.8);
}

pre.compile_fail:hover, .information:hover + pre.compile_fail {
Expand All @@ -270,7 +270,7 @@ pre.ignore:hover, .information:hover + pre.ignore {
}

.tooltip.compile_fail {
color: rgba(255,0,0,.6);
color: rgba(255,0,0,.8);
}

.information > .compile_fail:hover {
Expand All @@ -282,16 +282,17 @@ pre.ignore:hover, .information:hover + pre.ignore {
}

.information > .ignore:hover {
color: rgba(255,142,0,1);
color: #ff9200;
}

.search-failed a {
color: #0089ff;
}

.tooltip .tooltiptext {
background-color: black;
background-color: #000;
color: #fff;
border-color: #000;
}

.tooltip .tooltiptext::after {
Expand Down
12 changes: 6 additions & 6 deletions src/librustdoc/html/static/themes/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -248,43 +248,43 @@ a.test-arrow:hover{
}

pre.compile_fail {
border-left: 2px solid rgba(255,0,0,.4);
border-left: 2px solid rgba(255,0,0,.5);
}

pre.compile_fail:hover, .information:hover + pre.compile_fail {
border-left: 2px solid #f00;
}

pre.ignore {
border-left: 2px solid rgba(255,142,0,.4);
border-left: 2px solid rgba(255,142,0,.6);
}

pre.ignore:hover, .information:hover + pre.ignore {
border-left: 2px solid #ff9200;
}

.tooltip.compile_fail {
color: rgba(255,0,0,.3);
color: rgba(255,0,0,.5);
}

.information > .compile_fail:hover {
color: #f00;
}

.tooltip.ignore {
color: rgba(255,142,0,.3);
color: rgba(255,142,0,.6);
}

.information > .ignore:hover {
color: rgba(255,142,0,1);
color: #ff9200;
}

.search-failed a {
color: #0089ff;
}

.tooltip .tooltiptext {
background-color: black;
background-color: #000;
color: #fff;
}

Expand Down
0