From afa9dffdbc71b31014f2f3e380fdacc9653d53f7 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Mon, 9 Dec 2024 19:11:14 +0700 Subject: [PATCH] vello_editor: Remove wildcard import --- examples/vello_editor/src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/vello_editor/src/main.rs b/examples/vello_editor/src/main.rs index 13f33040..afe93c6e 100644 --- a/examples/vello_editor/src/main.rs +++ b/examples/vello_editor/src/main.rs @@ -8,7 +8,6 @@ #![allow(clippy::cast_possible_truncation)] #![allow(clippy::shadow_unrelated)] #![allow(clippy::unseparated_literal_suffix)] -#![allow(clippy::wildcard_imports)] use accesskit::{Node, Rect, Role, Tree, TreeUpdate}; use anyhow::Result; @@ -20,7 +19,7 @@ use vello::wgpu; use vello::{AaConfig, Renderer, RendererOptions, Scene}; use winit::application::ApplicationHandler; use winit::dpi::LogicalSize; -use winit::event::*; +use winit::event::{StartCause, WindowEvent}; use winit::event_loop::{ActiveEventLoop, ControlFlow, EventLoop, EventLoopProxy}; use winit::window::Window;