From 6b240a804b9e04457d7c0ebbc35aa9e4717a72ca Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Tue, 12 Dec 2023 22:16:19 -0500 Subject: [PATCH] Shut up Clippy about the code I didn't write --- src/havok/binary_tag_file_reader.rs | 2 ++ src/havok/object.rs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/havok/binary_tag_file_reader.rs b/src/havok/binary_tag_file_reader.rs index ab602da..853e9b2 100644 --- a/src/havok/binary_tag_file_reader.rs +++ b/src/havok/binary_tag_file_reader.rs @@ -1,6 +1,8 @@ // SPDX-FileCopyrightText: 2020 Inseok Lee // SPDX-License-Identifier: MIT +#![allow(clippy::arc_with_non_send_sync)] + use core::cell::RefCell; use std::collections::HashMap; use std::sync::Arc; diff --git a/src/havok/object.rs b/src/havok/object.rs index e5a8880..9ba1632 100644 --- a/src/havok/object.rs +++ b/src/havok/object.rs @@ -1,6 +1,8 @@ // SPDX-FileCopyrightText: 2020 Inseok Lee // SPDX-License-Identifier: MIT +#![allow(clippy::bad_bit_mask)] + use core::cell::RefCell; use std::collections::HashMap; use std::sync::Arc;