-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (45 loc) · 1.42 KB
/
Cargo.toml
File metadata and controls
49 lines (45 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[workspace]
members = ["backends", "core", "necessist"]
resolver = "2"
[workspace.lints.rust.unexpected_cfgs]
level = "deny"
check-cfg = ["cfg(dylint_lib, values(any()))"]
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
let-underscore-untyped = "warn"
format-collect = "allow"
missing-errors-doc = "allow"
missing-panics-doc = "allow"
mutable-key-type = "allow"
struct-field-names = "allow"
[[workspace.metadata.dylint.libraries]]
git = "https://github.com/trailofbits/dylint"
pattern = [
"examples/general",
"examples/supplementary",
"examples/restriction/assert_eq_arg_misordering",
"examples/restriction/collapsible_unwrap",
"examples/restriction/const_path_join",
"examples/restriction/inconsistent_qualification",
"examples/restriction/misleading_variable_name",
"examples/restriction/question_mark_in_expression",
"examples/restriction/ref_aware_redundant_closure_for_method_calls",
"examples/restriction/suboptimal_pattern",
]
[workspace.metadata.unmaintained]
ignore = [
"dirs-sys-next",
"libredox",
"paste",
"rand_core",
"redox_syscall",
"redox_users",
"smartstring",
"solang-parser",
"strip-ansi-escapes",
"unit-prefix",
# https://github.com/alacritty/vte/pull/122#issuecomment-2579278540
"utf8parse",
# https://github.com/console-rs/indicatif/blob/dbd26eb18157e5fad18c79e1933ad5f249165d6c/Cargo.toml#L34-L35
"web-time",
]