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;