mirror of
https://github.com/emilk/egui.git
synced 2026-08-29 12:50:04 -04:00
Enable the clippy::std_instead_of_core lint (#8394)
Prefer `core::` over `std::` where either work * Part of https://github.com/emilk/egui/issues/5735
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
#![expect(clippy::unwrap_used)] // It's an example
|
||||
|
||||
use std::{cell::Cell, io, os::fd::AsRawFd as _, rc::Rc, time::Duration};
|
||||
use core::{cell::Cell, time::Duration};
|
||||
use std::{io, os::fd::AsRawFd as _, rc::Rc};
|
||||
|
||||
use tokio::task::LocalSet;
|
||||
use winit::event_loop::{ControlFlow, EventLoop};
|
||||
|
||||
Reference in New Issue
Block a user