Skip to content

Commit 86cb9c9

Browse files
committed
Disable clippy::manual_split_once lint
It's suggestions in stable 1.57 Rust are incorrect: rust-lang/rust-clippy#7889
1 parent e86d801 commit 86cb9c9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
#![allow(
1313
clippy::match_bool,
1414
clippy::eval_order_dependence,
15-
clippy::bool_assert_comparison
15+
clippy::bool_assert_comparison,
16+
clippy::manual_split_once
1617
)]
1718

1819
#[macro_use]

0 commit comments

Comments
 (0)