Skip to content

Commit 5d63a28

Browse files
committed
Move non_send_fields_in_send_ty back to nursery
1 parent c0fd250 commit 5d63a28

4 files changed

+2
-3
lines changed

clippy_lints/src/lib.register_all.rs

-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,6 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
220220
LintId::of(non_copy_const::DECLARE_INTERIOR_MUTABLE_CONST),
221221
LintId::of(non_expressive_names::JUST_UNDERSCORES_AND_DIGITS),
222222
LintId::of(non_octal_unix_permissions::NON_OCTAL_UNIX_PERMISSIONS),
223-
LintId::of(non_send_fields_in_send_ty::NON_SEND_FIELDS_IN_SEND_TY),
224223
LintId::of(octal_escapes::OCTAL_ESCAPES),
225224
LintId::of(open_options::NONSENSICAL_OPEN_OPTIONS),
226225
LintId::of(option_env_unwrap::OPTION_ENV_UNWRAP),

clippy_lints/src/lib.register_nursery.rs

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ store.register_group(true, "clippy::nursery", Some("clippy_nursery"), vec![
1818
LintId::of(missing_const_for_fn::MISSING_CONST_FOR_FN),
1919
LintId::of(mutable_debug_assertion::DEBUG_ASSERT_WITH_MUT_CALL),
2020
LintId::of(mutex_atomic::MUTEX_INTEGER),
21+
LintId::of(non_send_fields_in_send_ty::NON_SEND_FIELDS_IN_SEND_TY),
2122
LintId::of(nonstandard_macro_braces::NONSTANDARD_MACRO_BRACES),
2223
LintId::of(option_if_let_else::OPTION_IF_LET_ELSE),
2324
LintId::of(path_buf_push_overwrite::PATH_BUF_PUSH_OVERWRITE),

clippy_lints/src/lib.register_suspicious.rs

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ store.register_group(true, "clippy::suspicious", Some("clippy_suspicious"), vec!
1515
LintId::of(loops::MUT_RANGE_BOUND),
1616
LintId::of(methods::SUSPICIOUS_MAP),
1717
LintId::of(mut_key::MUTABLE_KEY_TYPE),
18-
LintId::of(non_send_fields_in_send_ty::NON_SEND_FIELDS_IN_SEND_TY),
1918
LintId::of(octal_escapes::OCTAL_ESCAPES),
2019
LintId::of(suspicious_trait_impl::SUSPICIOUS_ARITHMETIC_IMPL),
2120
LintId::of(suspicious_trait_impl::SUSPICIOUS_OP_ASSIGN_IMPL),

clippy_lints/src/non_send_fields_in_send_ty.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ declare_clippy_lint! {
5050
/// or specify correct bounds on generic type parameters (`T: Send`).
5151
#[clippy::version = "1.57.0"]
5252
pub NON_SEND_FIELDS_IN_SEND_TY,
53-
suspicious,
53+
nursery,
5454
"there is a field that is not safe to be sent to another thread in a `Send` struct"
5555
}
5656

0 commit comments

Comments
 (0)