mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-24 20:13:24 +00:00
Auto merge of #5653 - matthiaskrgr:rustup_47, r=flip1995
rustup https://github.com/rust-lang/rust/pull/72342, allow unused_crate_dependencies changelog: none
This commit is contained in:
commit
2a2208fcc2
2 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
#![allow(clippy::all)]
|
#![allow(clippy::all)]
|
||||||
#![warn(clippy::cognitive_complexity)]
|
#![warn(clippy::cognitive_complexity)]
|
||||||
#![allow(unused)]
|
#![allow(unused, unused_crate_dependencies)]
|
||||||
|
|
||||||
#[rustfmt::skip]
|
#[rustfmt::skip]
|
||||||
fn main() {
|
fn main() {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#![warn(clippy::cognitive_complexity)]
|
#![warn(unused, clippy::cognitive_complexity)]
|
||||||
#![warn(unused)]
|
#![allow(unused_crate_dependencies)]
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
kaboom();
|
kaboom();
|
||||||
|
|
Loading…
Reference in a new issue