-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
48 lines (44 loc) · 1.02 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
[workspace]
resolver = "2"
members = [
"debris",
"debris/backends",
"debris/common",
"debris/error",
"debris/hir",
"debris/language_server",
"debris/llir",
"debris/mir",
"debris/parser",
"debris/std",
]
[profile.release]
lto = true
panic = "abort"
codegen-units = 1
strip = true
[workspace.lints.clippy]
pedantic = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
dbg_macro = "deny"
rc_buffer = "deny"
string_to_string = "deny"
use_debug = "deny"
must_use_candidate = "allow"
default_trait_access = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
missing_errors_doc = "allow"
match_bool = "allow"
too_many_lines = "allow"
enum_glob_use = "allow"
non_ascii_literal = "allow"
return_self_not_must_use = "allow"
cargo-common-metadata = "allow"
use_self = "allow"
missing_const_for_fn = "allow"
cognitive_complexity = "allow"
option-if-let-else = "allow"
type-complexity = "allow"
needless_collect = "allow"