-
Notifications
You must be signed in to change notification settings - Fork 363
Expand file tree
/
Copy pathclippy.toml
More file actions
40 lines (33 loc) · 1.24 KB
/
clippy.toml
File metadata and controls
40 lines (33 loc) · 1.24 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
too-many-lines-threshold = 200
await-holding-invalid-types = [
{ path = "tracing::span::Entered", reason = "`Entered` is not aware when a function is suspended: https://docs.rs/tracing/latest/tracing/struct.Span.html#in-asynchronous-code" },
{ path = "tracing::span::EnteredSpan", reason = "`EnteredSpan` is not aware when a function is suspended: https://docs.rs/tracing/latest/tracing/struct.Span.html#in-asynchronous-code" },
]
[[disallowed-types]]
path = "rsa::pkcs1v15::DecryptingKey"
reason = "CVE-2023-49092 / T251991467"
allow-invalid = true
[[disallowed-types]]
path = "rsa::pkcs1v15::EncryptingKey"
reason = "CVE-2023-49092 / T251991467"
allow-invalid = true
[[disallowed-types]]
path = "rsa::pkcs1v15::Pkcs1v15Encrypt"
reason = "CVE-2023-49092 / T251991467"
allow-invalid = true
[[disallowed-types]]
path = "rsa::pkcs1v15::Pkcs1v15Sign"
reason = "CVE-2023-49092 / T251991467"
allow-invalid = true
[[disallowed-types]]
path = "rsa::pkcs1v15::Signature"
reason = "CVE-2023-49092 / T251991467"
allow-invalid = true
[[disallowed-types]]
path = "rsa::pkcs1v15::SigningKey"
reason = "CVE-2023-49092 / T251991467"
allow-invalid = true
[[disallowed-types]]
path = "rsa::pkcs1v15::VerifyingKey"
reason = "CVE-2023-49092 / T251991467"
allow-invalid = true