Skip to content

Commit d1975f3

Browse files
committed
Update serde_derive_internals to tool attrs
1 parent b91713e commit d1975f3

File tree

1 file changed

+10
-13
lines changed

1 file changed

+10
-13
lines changed

serde_derive_internals/lib.rs

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
#![doc(html_root_url = "https://docs.rs/serde_derive_internals/0.25.0")]
22
#![allow(unknown_lints, bare_trait_objects)]
3-
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
4-
#![cfg_attr(
5-
feature = "cargo-clippy",
6-
allow(
7-
cognitive_complexity,
8-
redundant_field_names,
9-
result_unit_err,
10-
should_implement_trait,
11-
trivially_copy_pass_by_ref,
12-
wildcard_in_or_patterns,
13-
// clippy bug: https://github.com/rust-lang/rust-clippy/issues/5704
14-
unnested_or_patterns,
15-
)
3+
#![deny(clippy::all)]
4+
#![allow(
5+
clippy::cognitive_complexity,
6+
clippy::redundant_field_names,
7+
clippy::result_unit_err,
8+
clippy::should_implement_trait,
9+
clippy::trivially_copy_pass_by_ref,
10+
clippy::wildcard_in_or_patterns,
11+
// clippy bug: https://github.com/rust-lang/rust-clippy/issues/5704
12+
clippy::unnested_or_patterns,
1613
)]
1714

1815
#[macro_use]

0 commit comments

Comments
 (0)