Skip to content

Commit

Permalink
submodules: update clippy from 1ff81c1 to 70b93aa
Browse files Browse the repository at this point in the history
Changes:
````
remove redundant import
rustup rust-lang#68404
rustup rust-lang#69644
rustup rust-lang#70344
Move verbose_file_reads to restriction
move redundant_pub_crate to nursery
readme: explain how to run only a single lint on a codebase
Remove dependency on `matches` crate
Move useless_transmute to nursery
nursery group -> style
Update for PR feedback
Auto merge of rust-lang#5314 - ehuss:remove-git2, r=flip1995
Lint for `pub(crate)` items that are not crate visible due to the visibility of the module that contains them
````

Fixes rust-lang#70456
  • Loading branch information
matthiaskrgr committed Mar 27, 2020
1 parent 7520894 commit 6e01d0f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,6 @@ dependencies = [
"if_chain",
"itertools 0.9.0",
"lazy_static 1.4.0",
"matches",
"pulldown-cmark 0.7.0",
"quine-mc_cluskey",
"regex-syntax",
Expand Down
2 changes: 1 addition & 1 deletion src/tools/clippy
Submodule clippy updated 40 files
+1 −0 CHANGELOG.md
+9 −1 README.md
+0 −1 clippy_lints/Cargo.toml
+0 −1 clippy_lints/src/block_in_if_condition.rs
+2 −1 clippy_lints/src/derive.rs
+0 −1 clippy_lints/src/eta_reduction.rs
+2 −2 clippy_lints/src/if_let_some_result.rs
+0 −1 clippy_lints/src/items_after_statements.rs
+9 −5 clippy_lints/src/lib.rs
+0 −1 clippy_lints/src/lifetimes.rs
+1 −1 clippy_lints/src/loops.rs
+7 −5 clippy_lints/src/matches.rs
+0 −1 clippy_lints/src/methods/mod.rs
+0 −1 clippy_lints/src/misc.rs
+0 −1 clippy_lints/src/missing_const_for_fn.rs
+2 −2 clippy_lints/src/mut_reference.rs
+0 −1 clippy_lints/src/mutable_debug_assertion.rs
+0 −1 clippy_lints/src/needless_pass_by_value.rs
+1 −2 clippy_lints/src/redundant_clone.rs
+76 −0 clippy_lints/src/redundant_pub_crate.rs
+0 −1 clippy_lints/src/swap.rs
+11 −3 clippy_lints/src/trait_bounds.rs
+2 −1 clippy_lints/src/transmute.rs
+0 −1 clippy_lints/src/trivially_copy_pass_by_ref.rs
+3 −3 clippy_lints/src/utils/author.rs
+1 −1 clippy_lints/src/utils/conf.rs
+1 −1 clippy_lints/src/utils/hir_utils.rs
+6 −7 clippy_lints/src/utils/inspector.rs
+0 −1 clippy_lints/src/utils/mod.rs
+2 −2 clippy_lints/src/utils/numeric_literal.rs
+2 −3 clippy_lints/src/utils/sugg.rs
+1 −1 clippy_lints/src/verbose_file_reads.rs
+10 −3 src/lintlist/mod.rs
+107 −0 tests/ui/redundant_pub_crate.fixed
+107 −0 tests/ui/redundant_pub_crate.rs
+132 −0 tests/ui/redundant_pub_crate.stderr
+1 −27 tests/ui/transmute_ptr_to_ptr.stderr
+1 −0 tests/ui/wildcard_imports.fixed
+1 −0 tests/ui/wildcard_imports.rs
+15 −15 tests/ui/wildcard_imports.stderr

0 comments on commit 6e01d0f

Please sign in to comment.