Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0f6f2d6

Browse files
committedDec 6, 2020
Auto merge of #79765 - flip1995:clippyup, r=Manishearth
Update Clippy Biweekly Clippy update (which I forgot about on Thursday) This includes a `Cargo.lock` update, so probably needs `rollup=never`. r? `@Manishearth`
2 parents d577c53 + 898ef0f commit 0f6f2d6

File tree

140 files changed

+4342
-577
lines changed

Some content is hidden

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

140 files changed

+4342
-577
lines changed
 

‎Cargo.lock

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,6 +569,7 @@ dependencies = [
569569
"quine-mc_cluskey",
570570
"quote",
571571
"regex-syntax",
572+
"rustc-semver",
572573
"semver 0.11.0",
573574
"serde",
574575
"smallvec 1.4.2",
@@ -3365,6 +3366,12 @@ dependencies = [
33653366
"num_cpus",
33663367
]
33673368

3369+
[[package]]
3370+
name = "rustc-semver"
3371+
version = "1.1.0"
3372+
source = "registry+https://github.com/rust-lang/crates.io-index"
3373+
checksum = "5be1bdc7edf596692617627bbfeaba522131b18e06ca4df2b6b689e3c5d5ce84"
3374+
33683375
[[package]]
33693376
name = "rustc-std-workspace-alloc"
33703377
version = "1.99.0"
@@ -5265,7 +5272,7 @@ dependencies = [
52655272
"chrono",
52665273
"lazy_static",
52675274
"matchers",
5268-
"parking_lot 0.9.0",
5275+
"parking_lot 0.11.0",
52695276
"regex",
52705277
"serde",
52715278
"serde_json",

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,14 +128,14 @@ jobs:
128128
SYSROOT=$(rustc --print sysroot)
129129
echo "$SYSROOT/bin" >> $GITHUB_PATH
130130
131-
- name: Build
132-
run: cargo build --features deny-warnings
131+
- name: Build with internal lints
132+
run: cargo build --features deny-warnings,internal-lints
133133

134-
- name: Test
135-
run: cargo test --features deny-warnings
134+
- name: Test with internal lints
135+
run: cargo test --features deny-warnings,internal-lints
136136

137-
- name: Test clippy_lints
138-
run: cargo test --features deny-warnings
137+
- name: Test clippy_lints with internal lints
138+
run: cargo test --features deny-warnings,internal-lints
139139
working-directory: clippy_lints
140140

141141
- name: Test rustc_tools_util

0 commit comments

Comments
 (0)
Please sign in to comment.