-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
42 lines (38 loc) · 1.72 KB
/
Cargo.toml
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
[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" },
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/supplementary" },
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/restriction/assert_eq_arg_misordering" },
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/restriction/collapsible_unwrap" },
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/restriction/const_path_join" },
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/restriction/inconsistent_qualification" },
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/restriction/misleading_variable_name" },
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/restriction/question_mark_in_expression" },
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/restriction/ref_aware_redundant_closure_for_method_calls" },
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/restriction/suboptimal_pattern" },
]
[workspace.metadata.unmaintained]
ignore = [
"ascii-canvas",
"bit-set",
"icu_locid",
"icu_locid_transform",
"icu_locid_transform_data",
"num_cpus",
"paste",
"solang-parser",
]