Skip to content

Commit 4273c1f

Browse files
committed
Add lint for missing Debug implementation
There were a few structs with a missing Debug derive that were not caught by the linter. Add the rustc lint to types to catch these..
1 parent bace448 commit 4273c1f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

types/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@ serde = { version = "1.0.103", default-features = false, features = [ "derive",
2222
serde_json = { version = "1.0.117" }
2323

2424
[dev-dependencies]
25+
26+
[lints.rust]
27+
missing_debug_implementations = "deny"

0 commit comments

Comments
 (0)