2021-01-30 11:06:34 -06:00
|
|
|
[crates]
|
|
|
|
# some of these are from cargotest
|
2024-07-11 08:44:03 -05:00
|
|
|
cargo = {name = "cargo", version = '0.64.0'}
|
|
|
|
iron = {name = "iron", version = '0.6.1'}
|
|
|
|
ripgrep = {name = "ripgrep", version = '12.1.1'}
|
|
|
|
xsv = {name = "xsv", version = '0.13.0'}
|
2021-02-11 08:04:38 -06:00
|
|
|
# commented out because of 173K clippy::match_same_arms msgs in language_type.rs
|
2024-07-11 08:44:03 -05:00
|
|
|
#tokei = { name = "tokei", version = '12.0.4'}
|
|
|
|
rayon = {name = "rayon", version = '1.5.0'}
|
|
|
|
serde = {name = "serde", version = '1.0.118'}
|
2021-01-30 11:06:34 -06:00
|
|
|
# top 10 crates.io dls
|
2024-07-11 08:44:03 -05:00
|
|
|
bitflags = {name = "bitflags", version = '1.2.1'}
|
2021-02-11 08:04:38 -06:00
|
|
|
# crash = {name = "clippy_crash", path = "/tmp/clippy_crash"}
|
2024-07-11 08:44:03 -05:00
|
|
|
libc = {name = "libc", version = '0.2.81'}
|
|
|
|
log = {name = "log", version = '0.4.11'}
|
|
|
|
proc-macro2 = {name = "proc-macro2", version = '1.0.24'}
|
|
|
|
quote = {name = "quote", version = '1.0.7'}
|
|
|
|
rand = {name = "rand", version = '0.7.3'}
|
|
|
|
rand_core = {name = "rand_core", version = '0.6.0'}
|
|
|
|
regex = {name = "regex", version = '1.3.2'}
|
|
|
|
syn = {name = "syn", version = '1.0.54'}
|
|
|
|
unicode-xid = {name = "unicode-xid", version = '0.2.1'}
|
2021-03-12 08:30:50 -06:00
|
|
|
# some more of dtolnays crates
|
2024-07-11 08:44:03 -05:00
|
|
|
anyhow = {name = "anyhow", version = '1.0.38'}
|
|
|
|
async-trait = {name = "async-trait", version = '0.1.42'}
|
|
|
|
cxx = {name = "cxx", version = '1.0.32'}
|
|
|
|
ryu = {name = "ryu", version = '1.0.5'}
|
|
|
|
serde_yaml = {name = "serde_yaml", version = '0.8.17'}
|
|
|
|
thiserror = {name = "thiserror", version = '1.0.24'}
|
2021-03-12 08:30:50 -06:00
|
|
|
# some embark crates, there are other interesting crates but
|
|
|
|
# unfortunately adding them increases lintcheck runtime drastically
|
2024-07-11 08:44:03 -05:00
|
|
|
cfg-expr = {name = "cfg-expr", version = '0.7.1'}
|
2021-03-12 08:30:50 -06:00
|
|
|
puffin = {name = "puffin", git_url = "https://github.com/EmbarkStudios/puffin", git_hash = "02dd4a3"}
|
2024-07-11 08:44:03 -05:00
|
|
|
rpmalloc = {name = "rpmalloc", version = '0.2.0'}
|
|
|
|
tame-oidc = {name = "tame-oidc", version = '0.1.0'}
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
[recursive]
|
|
|
|
ignore = [
|
|
|
|
# Takes ~30s to lint
|
|
|
|
"combine",
|
|
|
|
# Has 1.2 million `clippy::match_same_arms`s
|
|
|
|
"unicode-normalization",
|
|
|
|
]
|