Skip to content

Commit 9a5464e

Browse files
committed
Make the clippy::implicit_clone lint trigger a warning
These seem to be reasonable lints that somewhat help clean up the code a bit.
1 parent 6dd59d1 commit 9a5464e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ single_use_lifetimes = "warn"
7878
[workspace.lints.clippy]
7979
unused_async = "deny"
8080
undocumented_unsafe_blocks = "warn"
81+
implicit_clone = "warn"
8182

8283
[workspace.dependencies]
8384
hickory-proto = "0.24.3"

test/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ single_use_lifetimes = "warn"
3434

3535
[workspace.lints.clippy]
3636
unused_async = "deny"
37+
implicit_clone = "warn"
3738

3839
[workspace.dependencies]
3940
futures = "0.3"

0 commit comments

Comments
 (0)