Skip to content

Commit 6f44e54

Browse files
committed
Try to fix clippy warning from serde
1 parent 2488aa1 commit 6f44e54

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

wundergraph_bench/src/main.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
#![cfg_attr(feature = "clippy", plugin(clippy(conf_file = "../../clippy.toml")))]
66
#![cfg_attr(
77
feature = "clippy",
8-
allow(option_map_unwrap_or_else, option_map_unwrap_or, match_same_arms, type_complexity)
8+
allow(
9+
option_map_unwrap_or_else, option_map_unwrap_or, match_same_arms, type_complexity,
10+
useless_attribute
11+
)
912
)]
1013
#![cfg_attr(
1114
feature = "clippy",

wundergraph_example/src/main.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
#![cfg_attr(feature = "clippy", plugin(clippy(conf_file = "../../clippy.toml")))]
66
#![cfg_attr(
77
feature = "clippy",
8-
allow(option_map_unwrap_or_else, option_map_unwrap_or, match_same_arms, type_complexity)
8+
allow(
9+
option_map_unwrap_or_else, option_map_unwrap_or, match_same_arms, type_complexity,
10+
useless_attribute
11+
)
912
)]
1013
#![cfg_attr(
1114
feature = "clippy",

0 commit comments

Comments
 (0)