Skip to content

Commit c16ff6e

Browse files
authored
Rollup merge of #55496 - Manishearth:clippyup, r=oli-obk
Update clippy Pulls in rust-lang/rust-clippy#3382, should unbreak clippy r? @oli-obk @phansch
2 parents 93f84e5 + 49e712f commit c16ff6e

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/Cargo.lock

+5-4
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ dependencies = [
326326
"clippy-mini-macro-test 0.2.0",
327327
"clippy_dev 0.0.1",
328328
"clippy_lints 0.0.212",
329-
"compiletest_rs 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)",
329+
"compiletest_rs 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)",
330330
"derive-new 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
331331
"lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
332332
"regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -443,7 +443,7 @@ dependencies = [
443443

444444
[[package]]
445445
name = "compiletest_rs"
446-
version = "0.3.13"
446+
version = "0.3.16"
447447
source = "registry+https://github.com/rust-lang/crates.io-index"
448448
dependencies = [
449449
"diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -452,6 +452,7 @@ dependencies = [
452452
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
453453
"log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
454454
"miow 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
455+
"regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
455456
"serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
456457
"serde_derive 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
457458
"serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1289,7 +1290,7 @@ dependencies = [
12891290
"byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
12901291
"cargo_metadata 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
12911292
"colored 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
1292-
"compiletest_rs 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)",
1293+
"compiletest_rs 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)",
12931294
"env_logger 0.5.12 (registry+https://github.com/rust-lang/crates.io-index)",
12941295
"log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
12951296
"vergen 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -3202,7 +3203,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
32023203
"checksum colored 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b0aa3473e85a3161b59845d6096b289bb577874cafeaf75ea1b1beaa6572c7fc"
32033204
"checksum commoncrypto 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d056a8586ba25a1e4d61cb090900e495952c7886786fc55f909ab2f819b69007"
32043205
"checksum commoncrypto-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1fed34f46747aa73dfaa578069fd8279d2818ade2b55f38f22a9401c7f4083e2"
3205-
"checksum compiletest_rs 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)" = "d3064bc712922596dd5ab449fca9261d411893356581fe5297b96aa8f53bb1b8"
3206+
"checksum compiletest_rs 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)" = "75e809f56d6aa9575b67924b0af686c4f4c1380314f47947e235e9ff7fa94bed"
32063207
"checksum core-foundation 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cc3532ec724375c7cb7ff0a097b714fde180bb1f6ed2ab27cfcd99ffca873cd2"
32073208
"checksum core-foundation-sys 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a3fb15cdbdd9cf8b82d97d0296bb5cd3631bba58d6e31650a002a8e7fb5721f9"
32083209
"checksum crossbeam 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "24ce9782d4d5c53674646a6a4c1863a21a8fc0cb649b3c94dfc16e45071dea19"

src/tools/clippy

0 commit comments

Comments
 (0)