Skip to content

Commit 2d76a9d

Browse files
committedDec 17, 2022
Auto merge of #105827 - flip1995:clippyup, r=matthiaskrgr
Update Clippy r? `@Manishearth`
2 parents 65c53c3 + 10f2a6d commit 2d76a9d

File tree

128 files changed

+2719
-608
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+2719
-608
lines changed
 

‎Cargo.lock

+12-6
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ dependencies = [
394394
"directories",
395395
"rustc-build-sysroot",
396396
"rustc-workspace-hack",
397-
"rustc_tools_util",
397+
"rustc_tools_util 0.2.1",
398398
"rustc_version",
399399
"serde",
400400
"serde_json",
@@ -658,7 +658,7 @@ dependencies = [
658658

659659
[[package]]
660660
name = "clippy"
661-
version = "0.1.67"
661+
version = "0.1.68"
662662
dependencies = [
663663
"clippy_lints",
664664
"clippy_utils",
@@ -673,7 +673,7 @@ dependencies = [
673673
"regex",
674674
"rustc-semver",
675675
"rustc-workspace-hack",
676-
"rustc_tools_util",
676+
"rustc_tools_util 0.3.0",
677677
"semver",
678678
"serde",
679679
"syn",
@@ -700,7 +700,7 @@ dependencies = [
700700

701701
[[package]]
702702
name = "clippy_lints"
703-
version = "0.1.67"
703+
version = "0.1.68"
704704
dependencies = [
705705
"cargo_metadata 0.14.0",
706706
"clippy_utils",
@@ -723,7 +723,7 @@ dependencies = [
723723

724724
[[package]]
725725
name = "clippy_utils"
726-
version = "0.1.67"
726+
version = "0.1.68"
727727
dependencies = [
728728
"arrayvec",
729729
"if_chain",
@@ -1068,7 +1068,7 @@ checksum = "a0afaad2b26fa326569eb264b1363e8ae3357618c43982b3f285f0774ce76b69"
10681068

10691069
[[package]]
10701070
name = "declare_clippy_lint"
1071-
version = "0.1.67"
1071+
version = "0.1.68"
10721072
dependencies = [
10731073
"itertools",
10741074
"quote",
@@ -4429,6 +4429,12 @@ version = "0.2.1"
44294429
source = "registry+https://github.com/rust-lang/crates.io-index"
44304430
checksum = "598f48ce2a421542b3e64828aa742b687cc1b91d2f96591cfdb7ac5988cd6366"
44314431

4432+
[[package]]
4433+
name = "rustc_tools_util"
4434+
version = "0.3.0"
4435+
source = "registry+https://github.com/rust-lang/crates.io-index"
4436+
checksum = "8ba09476327c4b70ccefb6180f046ef588c26a24cf5d269a9feba316eb4f029f"
4437+
44324438
[[package]]
44334439
name = "rustc_trait_selection"
44344440
version = "0.0.0"

‎src/tools/clippy/.github/workflows/clippy_bors.yml

-7
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,6 @@ jobs:
8282
with:
8383
github_token: "${{ secrets.github_token }}"
8484

85-
- name: Install dependencies (Linux-i686)
86-
run: |
87-
sudo dpkg --add-architecture i386
88-
sudo apt-get update
89-
sudo apt-get install gcc-multilib libssl-dev:i386 libgit2-dev:i386
90-
if: matrix.host == 'i686-unknown-linux-gnu'
91-
9285
- name: Checkout
9386
uses: actions/checkout@v3.0.2
9487

0 commit comments

Comments
 (0)