Skip to content

Update Clippy #81560

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 147 commits into from
Jan 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
147 commits
Select commit Hold shift + click to select a range
bd23570
add WebGL to doc_valid_idents
Nov 27, 2020
415394c
Fix false positive in write_literal and print_literal due to numeric …
pro-grammer1 Dec 1, 2020
39f39d5
match_like_matches_macro: strip refs in suggestion
matthiaskrgr Jan 1, 2021
61f3d9d
Add case_sensitive_file_extensions lint
Javier-varez Dec 23, 2020
1527fb6
Fix case-sensitive extension check
Javier-varez Dec 23, 2020
e56973a
Remove default lint description
Javier-varez Dec 23, 2020
15d5ac6
Remove duplication in the manual_ok_or lint example
stanislav-tkach Jan 6, 2021
8490862
Fix path_to_res for enum inherent items
camsteffen Jan 6, 2021
8d7417d
Add: single_match will suggest using if .. == .. instead of if let wh…
Jarcho Jan 11, 2021
f2d4935
Similar names ignore underscore prefixed names
camsteffen Nov 28, 2020
feee45c
Fix the ICE 6539
rail-rain Jan 12, 2021
02f99be
Explicitly document false positives
Jan 13, 2021
85edd65
Address review comments
Jarcho Jan 14, 2021
d72cb25
Add notes of prioritization labels to doc
giraffate Jan 15, 2021
36ff2f7
Rename function
Jarcho Jan 15, 2021
488153f
Merge commit '953f024793dab92745fee9cd2c4dee6a60451771' into clippyup
flip1995 Jan 15, 2021
9ea66e9
Auto merge of #6555 - stanislav-tkach:patch-1, r=flip1995
bors Jan 15, 2021
8a77f63
Fix formulations in label descriptions
flip1995 Jan 15, 2021
9490fdc
Auto merge of #6589 - giraffate:add_notes_of_prioritization_labels_to…
bors Jan 15, 2021
2d1e129
Auto merge of #6574 - Jarcho:single_match_eq, r=Manishearth
bors Jan 15, 2021
83f1abf
Fix FP with empty return for `needless_return` lint
ThibsG Jan 4, 2021
46aa654
Fix test due to recent Rustup merge
ThibsG Jan 15, 2021
3577cf7
Auto merge of #6500 - Javier-varez:case_sensitive_file_extensions, r=…
bors Jan 15, 2021
837bc99
Initial implementation of redundant_slicing lint
Jarcho Dec 31, 2020
2a41d40
fix new lint error
Jarcho Dec 31, 2020
27c0d6c
don't lint external macro expansions
Jarcho Dec 31, 2020
bf028b3
fix copy-paste error
Jarcho Dec 31, 2020
9146a77
Update clippy_lints/src/redundant_slicing.rs
Jarcho Jan 14, 2021
7449dc9
Deprecate unknown_clippy_lints
flip1995 Jan 16, 2021
38e293c
Remove PredicateKind::Atom
jackh726 Dec 22, 2020
3436e21
Remove PredicateKind
jackh726 Dec 23, 2020
f06eeaf
Cleanup
jackh726 Jan 4, 2021
7c3b6a6
Use pred not binder
jackh726 Jan 4, 2021
8256960
Cleanup
jackh726 Jan 4, 2021
e73b8dc
Review changes
jackh726 Jan 7, 2021
0d542b7
Run tests/ui/update-all-references.sh and refactor match into matches!
pro-grammer1 Jan 17, 2021
40ce9f8
Auto merge of #6549 - ThibsG:FixClosureNeedlessReturn, r=phansch
bors Jan 17, 2021
e0d331f
Auto merge of #6582 - rail-rain:ice_6539, r=flip1995
bors Jan 17, 2021
990e2b3
Auto merge of #6528 - Jarcho:redundant_slicing, r=flip1995
bors Jan 17, 2021
91292f1
Auto merge of #6585 - Daniel-B-Smith:false-positive-issue, r=flip1995
bors Jan 17, 2021
2af642d
Replace another instance of match with matches
pro-grammer1 Jan 17, 2021
ab155b1
Negate results of matches!
pro-grammer1 Jan 17, 2021
fb2a06d
Remove numeric literals from print_literal and write_literal tests
pro-grammer1 Jan 17, 2021
32b2a3f
Add numeric literals to the write_literal and print_literal tests tha…
pro-grammer1 Jan 17, 2021
e477105
Auto merge of #80679 - jackh726:predicate-kind-take2, r=lcnr
bors Jan 17, 2021
abb40c9
Fix formatting for removed lints
jyn514 Jan 17, 2021
fb943fb
Merge remote-tracking branch 'upstream/master' into doc-markdown
Jan 17, 2021
c3244c2
add test for doc_valid_idents "WebGL"
Jan 17, 2021
9009f8f
Rollup merge of #81038 - flip1995:clippyup, r=Manishearth
KodrAus Jan 18, 2021
dce2262
Use ty::{IntTy,UintTy,FloatTy} in rustdoc and clippy
LeSeulArtichaut Dec 12, 2020
2454408
Remove qpath_res util function
camsteffen Jan 18, 2021
e33ab3f
Add test for `needless_return` lint
ThibsG Jan 18, 2021
c53192c
Add a note to `as_conversions`
rail-rain Jan 18, 2021
ab1020b
Auto merge of #6606 - ThibsG:AddTestNeedlessReturn, r=flip1995
bors Jan 19, 2021
e21270b
Auto merge of #6608 - rail-rain:note_on_as_conversions, r=phansch
bors Jan 19, 2021
3269070
Create new lint for the usage of inspect for each.
nahuakang Jan 11, 2021
d71dea4
Auto merge of #6577 - nahuakang:inspect_then_for_each, r=flip1995
bors Jan 19, 2021
9663206
Fix a wrong suggestion of `ref_in_deref`
giraffate Jan 19, 2021
391bb21
size_of_in_element_count: Separate test file in expressions and funct…
MarijnS95 Jan 19, 2021
d4bf59b
size_of_in_element_count: Disable lint on division by byte-size
MarijnS95 Jan 12, 2021
fb0d7f1
Auto merge of #6578 - MarijnS95:size-in-element-count-divide-by-byte-…
bors Jan 20, 2021
6c830ff
Run `cargo dev new_lint`
hkmatsumoto Dec 19, 2020
ab1da8f
Add new lint `upper_case_acronyms`
hkmatsumoto Dec 19, 2020
0ccb491
Remove nightly-gate of `split_inclusive`
hkmatsumoto Jan 20, 2021
e6665e4
Auto merge of #6475 - matsujika:capitalized_acronyms, r=flip1995
bors Jan 20, 2021
d990c31
Auto merge of #6567 - camsteffen:path-to-res-enum, r=Manishearth
bors Jan 20, 2021
2be935d
Force token collection to run when parsing nonterminals
Aaron1011 Jan 18, 2021
e42208f
Improve the suggestion message of `stable_sort_primitive`.
pastchick3 Jan 20, 2021
16d13a5
Auto merge of #6611 - pastchick3:master, r=flip1995
bors Jan 21, 2021
7b50a4e
Auto merge of #6408 - pro-grammer1:master, r=oli-obk
bors Jan 21, 2021
a982ab4
Auto merge of #6532 - matthiaskrgr:mlmm, r=llogiq
bors Jan 21, 2021
4d381c3
Auto merge of #6605 - kawogi:doc-markdown, r=llogiq
bors Jan 21, 2021
043cf97
Auto merge of #6609 - giraffate:fix_wrong_suggestion_of_ref_in_deref,…
bors Jan 21, 2021
f1ab302
New lint: exhaustive_enums
Manishearth Jan 21, 2021
dc93188
Make exhaustive_enums a late pass
Manishearth Jan 21, 2021
f6cb96e
Make exhaustive_enums only warn on exported items
Manishearth Jan 21, 2021
09d4d49
ExhaustiveEnums -> ExhaustiveItems
Manishearth Jan 21, 2021
a905cf6
Added documentation for common abbreviations
xFrednet Jan 21, 2021
2d509f8
Check if let guard in collapsible_match
camsteffen Jan 22, 2021
e89ad4b
Fix comment
camsteffen Dec 14, 2020
7a86608
Add expr_fallback to SpanlessEq
camsteffen Jan 1, 2021
c92bdc4
Split filter_map into manual_filter_map
camsteffen Jan 1, 2021
a752d31
Replace find_map with manual_find_map
camsteffen Jan 14, 2021
a22915b
Remove unneeded allow's
camsteffen Dec 14, 2020
82bab19
Deprecate find_map lint
camsteffen Jan 14, 2021
612a7fc
Add loop head span to hir
estebank Jan 21, 2021
3a5ede6
Fix clippy and comment
estebank Jan 22, 2021
a1b89f0
Auto merge of #81135 - jyn514:no-backticks, r=flip1995
bors Jan 22, 2021
23662d1
Improve the example in `ref_in_deref`
giraffate Jan 22, 2021
fbc374d
Auto merge of #6621 - giraffate:improve_the_example_in_ref_in_deref, …
bors Jan 22, 2021
e9b2cf4
Rollup merge of #81236 - estebank:everybody-loop-now, r=oli-obk
m-ou-se Jan 22, 2021
8c00304
Make more traits of the From/Into family diagnostic items
flip1995 Jan 22, 2021
8cb7e85
Add exhaustive_structs lint
Manishearth Jan 21, 2021
752274e
Fix indentation of suggestion
Manishearth Jan 21, 2021
65d003a
Clean up suggestion span; clarify help message
Manishearth Jan 22, 2021
3c3f4a7
Auto merge of #6591 - camsteffen:manual-filter-map, r=llogiq
bors Jan 22, 2021
66afdd1
Enhance collapsible_match for adjusted bindings
camsteffen Jan 22, 2021
50abde2
Fix dogfood
camsteffen Jan 22, 2021
41d750c
Auto merge of #6619 - camsteffen:collapsible-match, r=camsteffen
bors Jan 22, 2021
70386ff
Auto merge of #6403 - camsteffen:similar-names-underscore, r=Manishearth
bors Jan 22, 2021
bec916d
cargo dev crater: lay out the base plan
matthiaskrgr Dec 18, 2020
5353591
cargo dev crater: work on downloading and extracting crate sources
matthiaskrgr Dec 18, 2020
30d8594
crater: hook into main.rs
matthiaskrgr Dec 18, 2020
6317683
cargo dev crater: fixes and debug prints
matthiaskrgr Dec 18, 2020
e691474
cargo clippy dev: fix extraction of downloaded crates
matthiaskrgr Dec 18, 2020
69c0757
clippy cargo dev: fix checking of crates
matthiaskrgr Dec 18, 2020
2360a7c
cargo clippy dev: collecting one-line clippy warnings works now
matthiaskrgr Dec 18, 2020
734d205
print all clippy warnings in the end
matthiaskrgr Dec 18, 2020
7314133
cargo dev crater: cleanup, don't re-download and reextract crates on …
matthiaskrgr Dec 18, 2020
dbb8c00
cargo dev crater: save all warnings into a file
matthiaskrgr Dec 18, 2020
728dc06
add the log file
matthiaskrgr Dec 18, 2020
1e5ac1d
cargo dev crater: add more crates to be checked
matthiaskrgr Dec 18, 2020
ccfaa33
cargo dev crater: share target dir between clippy runs, enable pedan…
matthiaskrgr Dec 18, 2020
a9fce6d
allow clippy::filter_map
matthiaskrgr Dec 18, 2020
588efa7
use a .toml file to list the crates we want to check
matthiaskrgr Dec 22, 2020
f986d78
cargo dev crater: support multiple versions per crate
matthiaskrgr Dec 23, 2020
22824d2
rename symbols: krate -> crate
matthiaskrgr Dec 23, 2020
62337f2
remove duplicate code and other cleanup
matthiaskrgr Dec 23, 2020
6c5bf27
clippy dev crater: use and parse clippy messages as json message, to …
matthiaskrgr Dec 23, 2020
4ec9cb8
cargo dev crater: refactor to get a list of all ClippyWarnings
matthiaskrgr Dec 23, 2020
e56c9a5
cargo dev crater: gather and save lint statistics (how often a lint t…
matthiaskrgr Dec 23, 2020
d257101
make stats stable
matthiaskrgr Dec 27, 2020
b6ef1e2
clippy dev crater: add option to only check a single one of the liste…
matthiaskrgr Dec 27, 2020
ec1902c
cargo dev crater: throw an error if we can't find our specified crate…
matthiaskrgr Dec 27, 2020
94a73d7
add shortcut "dev-crater" command to build and run "cargo dev crater"
matthiaskrgr Dec 27, 2020
48fc948
clippy dev crater: address more review commetns
matthiaskrgr Dec 29, 2020
83fcf95
rename cargo dev crater to cargo dev lintcheck
matthiaskrgr Jan 22, 2021
d0d28b1
update lintcheck-logs
matthiaskrgr Jan 23, 2021
5b6a183
lintcheck: fix paths in the logs
matthiaskrgr Jan 23, 2021
0373dc3
Added documentation for adding a configuration to lints
xFrednet Jan 22, 2021
c56b328
Auto merge of #6630 - xFrednet:0000-configuration-documentation, r=ll…
bors Jan 25, 2021
e0ae980
Better suggestion span
Manishearth Jan 25, 2021
3e3dff7
Add test with attrs
Manishearth Jan 25, 2021
8d57cee
Auto merge of #6617 - Manishearth:exhaustive_enums, r=camsteffen
bors Jan 25, 2021
be0125b
Auto merge of #6469 - matthiaskrgr:clippy_dev_crater, r=flip1995
bors Jan 26, 2021
cbf9d49
Fix some website syntax highlighting
camsteffen Jan 26, 2021
5db215b
Auto merge of #6645 - camsteffen:syntax-highlighting, r=phansch
bors Jan 27, 2021
7bd3d6c
Rollup merge of #79951 - LeSeulArtichaut:ty-ir, r=nikomatsakis
JohnTitor Jan 28, 2021
299ff49
Rollup merge of #81277 - flip1995:from_diag_items, r=matthewjasper
JohnTitor Jan 28, 2021
c18d6f1
Rollup merge of #81176 - camsteffen:qpath-res, r=oli-obk
JohnTitor Jan 29, 2021
e285943
Merge remote-tracking branch 'upstream/master' into rustup
flip1995 Jan 30, 2021
60ab57e
Bump nightly version -> 2021-01-30
flip1995 Jan 30, 2021
4db76a6
Auto merge of #6653 - flip1995:rustup, r=flip1995
bors Jan 30, 2021
797cf65
Get rid of regex and lazy_static dependencies
flip1995 Jan 30, 2021
3874631
Remove unknown_clippy_lints allow attribute
flip1995 Jan 30, 2021
95c0459
Auto merge of #6654 - flip1995:no_lazy_static_regex, r=flip1995
bors Jan 30, 2021
21758bf
Merge commit '95c0459217d1661edfa794c8bb122452b92fb485' into clippyup
flip1995 Jan 30, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/tools/clippy/.cargo/config
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[alias]
uitest = "test --test compile-test"
dev = "run --target-dir clippy_dev/target --package clippy_dev --bin clippy_dev --manifest-path clippy_dev/Cargo.toml --"
dev-lintcheck = "run --target-dir clippy_dev/target --package clippy_dev --bin clippy_dev --manifest-path clippy_dev/Cargo.toml --features lintcheck -- lintcheck"

[build]
rustflags = ["-Zunstable-options"]
8 changes: 8 additions & 0 deletions src/tools/clippy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -1878,6 +1878,7 @@ Released 2018-09-13
[`boxed_local`]: https://rust-lang.github.io/rust-clippy/master/index.html#boxed_local
[`builtin_type_shadow`]: https://rust-lang.github.io/rust-clippy/master/index.html#builtin_type_shadow
[`cargo_common_metadata`]: https://rust-lang.github.io/rust-clippy/master/index.html#cargo_common_metadata
[`case_sensitive_file_extension_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#case_sensitive_file_extension_comparisons
[`cast_lossless`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless
[`cast_possible_truncation`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_truncation
[`cast_possible_wrap`]: https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap
Expand Down Expand Up @@ -1937,6 +1938,8 @@ Released 2018-09-13
[`erasing_op`]: https://rust-lang.github.io/rust-clippy/master/index.html#erasing_op
[`eval_order_dependence`]: https://rust-lang.github.io/rust-clippy/master/index.html#eval_order_dependence
[`excessive_precision`]: https://rust-lang.github.io/rust-clippy/master/index.html#excessive_precision
[`exhaustive_enums`]: https://rust-lang.github.io/rust-clippy/master/index.html#exhaustive_enums
[`exhaustive_structs`]: https://rust-lang.github.io/rust-clippy/master/index.html#exhaustive_structs
[`exit`]: https://rust-lang.github.io/rust-clippy/master/index.html#exit
[`expect_fun_call`]: https://rust-lang.github.io/rust-clippy/master/index.html#expect_fun_call
[`expect_used`]: https://rust-lang.github.io/rust-clippy/master/index.html#expect_used
Expand Down Expand Up @@ -1996,6 +1999,7 @@ Released 2018-09-13
[`inline_asm_x86_att_syntax`]: https://rust-lang.github.io/rust-clippy/master/index.html#inline_asm_x86_att_syntax
[`inline_asm_x86_intel_syntax`]: https://rust-lang.github.io/rust-clippy/master/index.html#inline_asm_x86_intel_syntax
[`inline_fn_without_body`]: https://rust-lang.github.io/rust-clippy/master/index.html#inline_fn_without_body
[`inspect_for_each`]: https://rust-lang.github.io/rust-clippy/master/index.html#inspect_for_each
[`int_plus_one`]: https://rust-lang.github.io/rust-clippy/master/index.html#int_plus_one
[`integer_arithmetic`]: https://rust-lang.github.io/rust-clippy/master/index.html#integer_arithmetic
[`integer_division`]: https://rust-lang.github.io/rust-clippy/master/index.html#integer_division
Expand Down Expand Up @@ -2033,6 +2037,8 @@ Released 2018-09-13
[`macro_use_imports`]: https://rust-lang.github.io/rust-clippy/master/index.html#macro_use_imports
[`main_recursion`]: https://rust-lang.github.io/rust-clippy/master/index.html#main_recursion
[`manual_async_fn`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_async_fn
[`manual_filter_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_filter_map
[`manual_find_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_find_map
[`manual_memcpy`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_memcpy
[`manual_non_exhaustive`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_non_exhaustive
[`manual_ok_or`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_ok_or
Expand Down Expand Up @@ -2161,6 +2167,7 @@ Released 2018-09-13
[`redundant_pattern`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern
[`redundant_pattern_matching`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
[`redundant_pub_crate`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pub_crate
[`redundant_slicing`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_slicing
[`redundant_static_lifetimes`]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_static_lifetimes
[`ref_in_deref`]: https://rust-lang.github.io/rust-clippy/master/index.html#ref_in_deref
[`ref_option_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#ref_option_ref
Expand Down Expand Up @@ -2271,6 +2278,7 @@ Released 2018-09-13
[`unusual_byte_groupings`]: https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings
[`unwrap_in_result`]: https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_in_result
[`unwrap_used`]: https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used
[`upper_case_acronyms`]: https://rust-lang.github.io/rust-clippy/master/index.html#upper_case_acronyms
[`use_debug`]: https://rust-lang.github.io/rust-clippy/master/index.html#use_debug
[`use_self`]: https://rust-lang.github.io/rust-clippy/master/index.html#use_self
[`used_underscore_binding`]: https://rust-lang.github.io/rust-clippy/master/index.html#used_underscore_binding
Expand Down
15 changes: 14 additions & 1 deletion src/tools/clippy/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,10 +310,19 @@ currently. Between writing new lints, fixing issues, reviewing pull requests and
responding to issues there may not always be enough time to stay on top of it
all.

Our highest priority is fixing [crashes][l-crash] and [bugs][l-bug]. We don't
Our highest priority is fixing [crashes][l-crash] and [bugs][l-bug], for example
an ICE in a popular crate that many other crates depend on. We don't
want Clippy to crash on your code and we want it to be as reliable as the
suggestions from Rust compiler errors.

We have prioritization labels and a sync-blocker label, which are described below.
- [P-low][p-low]: Requires attention (fix/response/evaluation) by a team member but isn't urgent.
- [P-medium][p-medium]: Should be addressed by a team member until the next sync.
- [P-high][p-high]: Should be immediately addressed and will require an out-of-cycle sync or a backport.
- [L-sync-blocker][l-sync-blocker]: An issue that "blocks" a sync.
Or rather: before the sync this should be addressed,
e.g. by removing a lint again, so it doesn't hit beta/stable.

## Bors and Homu

We use a bot powered by [Homu][homu] to help automate testing and landing of pull
Expand All @@ -327,6 +336,10 @@ commands [here][homu_instructions].
[triage]: https://forge.rust-lang.org/release/triage-procedure.html
[l-crash]: https://github.com/rust-lang/rust-clippy/labels/L-crash
[l-bug]: https://github.com/rust-lang/rust-clippy/labels/L-bug
[p-low]: https://github.com/rust-lang/rust-clippy/labels/P-low
[p-medium]: https://github.com/rust-lang/rust-clippy/labels/P-medium
[p-high]: https://github.com/rust-lang/rust-clippy/labels/P-high
[l-sync-blocker]: https://github.com/rust-lang/rust-clippy/labels/L-sync-blocker
[homu]: https://github.com/rust-lang/homu
[homu_instructions]: https://bors.rust-lang.org/
[homu_queue]: https://bors.rust-lang.org/queue/clippy
Expand Down
8 changes: 8 additions & 0 deletions src/tools/clippy/clippy_dev/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,22 @@ version = "0.0.1"
authors = ["Philipp Hansch <[email protected]>"]
edition = "2018"


[dependencies]
bytecount = "0.6"
clap = "2.33"
flate2 = { version = "1.0.19", optional = true }
itertools = "0.9"
opener = "0.4"
regex = "1"
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
shell-escape = "0.1"
tar = { version = "0.4.30", optional = true }
toml = { version = "0.5", optional = true }
ureq = { version = "2.0.0-rc3", optional = true }
walkdir = "2"

[features]
lintcheck = ["flate2", "serde_json", "tar", "toml", "ureq", "serde"]
deny-warnings = []
20 changes: 20 additions & 0 deletions src/tools/clippy/clippy_dev/lintcheck_crates.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[crates]
# some of these are from cargotest
cargo = ['0.49.0']
iron = ['0.6.1']
ripgrep = ['12.1.1']
xsv = ['0.13.0']
#tokei = ['12.0.4']
rayon = ['1.5.0']
serde = ['1.0.118']
# top 10 crates.io dls
bitflags = ['1.2.1']
libc = ['0.2.81']
log = ['0.4.11']
proc-macro2 = ['1.0.24']
quote = ['1.0.7']
rand = ['0.7.3']
rand_core = ['0.6.0']
regex = ['1.3.2']
syn = ['1.0.54']
unicode-xid = ['0.2.1']
1 change: 1 addition & 0 deletions src/tools/clippy/clippy_dev/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ use walkdir::WalkDir;

pub mod bless;
pub mod fmt;
pub mod lintcheck;
pub mod new_lint;
pub mod ra_setup;
pub mod serve;
Expand Down
Loading