@@ -4,7 +4,7 @@ disallowed-macros = [
4
4
{ path = " std::print" , reason = " no IO allowed" },
5
5
{ path = " std::println" , reason = " no IO allowed" },
6
6
{ path = " std::format" , reason = " no string allocation allowed" },
7
- { path = " std::debug " , reason = " debugging macros should not be present in any release" },
7
+ { path = " std::dbg " , reason = " debugging macros should not be present in any release" },
8
8
# NOTE: unimplemented is fine because this can be for intentionally disabled methods
9
9
{ path = " std::todo" , reason = " should never have TODO macros in releases" },
10
10
]
@@ -14,7 +14,7 @@ disallowed-methods = [
14
14
{ path = " std::io::stderr" , reason = " no IO allowed" },
15
15
]
16
16
disallowed-types = [
17
- { path = " std::io ::File" , reason = " no IO allowed" },
17
+ { path = " std::fs ::File" , reason = " no IO allowed" },
18
18
{ path = " std::io::BufReader" , reason = " need our own abstractions for reading/writing" },
19
19
{ path = " std::io::BufWriter" , reason = " need our own abstractions for reading/writing" },
20
20
]
0 commit comments