-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #13925 - epage:lint-config, r=weihanglo
[beta-1.79] fix(toml): Don't warn on lints.rust.unexpected_cfgs.check-cfg Beta backports: - #13913 (sort of): removes just the lint warning (in a different way to be minimal) so we reduce warning noise for people using this key on nightly In order to make CI pass, the following PRs are also cherry-picked: - #13865 - #13834 (only `time` due to rust-lang/rust#125319) - #13901 - #13931 - #13920 - #13890 - disable link check (not a cherry pick)
- Loading branch information
Showing
15 changed files
with
161 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,13 @@ COPY bar /repos/bar | |
WORKDIR /repos/bar | ||
RUN git config --global user.email "[email protected]" &&\ | ||
git config --global user.name "Test User" &&\ | ||
git config --system --add safe.directory '*' &&\ | ||
git init -b master . &&\ | ||
git add Cargo.toml src &&\ | ||
git commit -m "Initial commit" &&\ | ||
mv .git ../bar.git &&\ | ||
cd ../bar.git &&\ | ||
git config --bool core.bare true &&\ | ||
rm -rf ../bar | ||
cd .. &&\ | ||
git clone --bare bar bar.git &&\ | ||
rm -rf bar | ||
WORKDIR / | ||
|
||
EXPOSE 443 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,10 +17,9 @@ RUN git config --global user.email "[email protected]" &&\ | |
git init -b master . &&\ | ||
git add Cargo.toml src &&\ | ||
git commit -m "Initial commit" &&\ | ||
mv .git ../bar.git &&\ | ||
cd ../bar.git &&\ | ||
git config --bool core.bare true &&\ | ||
rm -rf ../bar | ||
cd .. &&\ | ||
git clone --bare bar bar.git &&\ | ||
rm -rf bar | ||
WORKDIR / | ||
USER root | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rustfix" | ||
version = "0.8.3" | ||
version = "0.8.4" | ||
authors = [ | ||
"Pascal Hertleif <[email protected]>", | ||
"Oliver Schneider <[email protected]>", | ||
|
2 changes: 1 addition & 1 deletion
2
...ts/everything/multiple-solutions.fixed.rs → ...thing/multiple-solutions.nightly.fixed.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
use std::collections::{HashSet}; | ||
use std::collections::HashSet; | ||
|
||
fn main() { | ||
let _: HashSet<()>; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters