-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
56 lines (54 loc) · 1.29 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[workspace]
members = [
"1kyu/*",
"2kyu/*",
"3kyu/*",
"4kyu/*",
"5kyu/*",
"6kyu/*",
"7kyu/*",
"8kyu/*",
"char-to-lower",
"check-katas",
"digital",
"progress-bars",
]
resolver = "2"
[profile.release]
codegen-units = 1
lto = true
panic = "abort"
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
must-use-candidate = "allow"
default-trait-access = "allow"
missing-panics-doc = "allow"
needless-pass-by-value = "allow"
cast-possible-truncation = "allow"
cast-sign-loss = "allow"
cast-lossless = "allow"
match-on-vec-items = "allow"
too-many-lines = "allow"
maybe-infinite-iter = "allow"
missing-errors-doc = "allow"
cast-precision-loss = "allow"
cast-possible-wrap = "allow"
implicit-hasher = "allow"
similar-names = "allow"
float-cmp = "allow"
return-self-not-must-use = "allow"
new-without-default = "allow"
many-single-char-names = "allow"
unused-io-amount = "allow"
type-complexity = "allow"
uninit-assumed-init = "allow"
zero-sized-map-values = "allow"
uninit-vec = "allow"
cognitive-complexity = "allow"
debug-assert-with-mut-call = "allow"
module-name-repetitions = "allow"
suspicious-operation-groupings = "allow"
while-float = "allow"
range-plus-one = "allow"