1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-24 05:27:45 +00:00

Shut up Clippy about the code I didn't write

This commit is contained in:
Joshua Goins 2023-12-12 22:16:19 -05:00
parent fadf811505
commit 6b240a804b
2 changed files with 4 additions and 0 deletions

View file

@ -1,6 +1,8 @@
// SPDX-FileCopyrightText: 2020 Inseok Lee // SPDX-FileCopyrightText: 2020 Inseok Lee
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
#![allow(clippy::arc_with_non_send_sync)]
use core::cell::RefCell; use core::cell::RefCell;
use std::collections::HashMap; use std::collections::HashMap;
use std::sync::Arc; use std::sync::Arc;

View file

@ -1,6 +1,8 @@
// SPDX-FileCopyrightText: 2020 Inseok Lee // SPDX-FileCopyrightText: 2020 Inseok Lee
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
#![allow(clippy::bad_bit_mask)]
use core::cell::RefCell; use core::cell::RefCell;
use std::collections::HashMap; use std::collections::HashMap;
use std::sync::Arc; use std::sync::Arc;