Skip to content

Commit

Permalink
huh
Browse files Browse the repository at this point in the history
  • Loading branch information
ezhang7423 committed Jan 1, 2022
1 parent 45c9451 commit 182468c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ members = [
]

[profile.release]
lto = true
debug = 1
lto = "fat"
debug = 0
incremental = false
codegen-units = 1
7 changes: 2 additions & 5 deletions alacritty/src/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@ use std::time::{Duration, Instant};
use std::{env, f32, mem};

use glutin::dpi::PhysicalSize;
use glutin::event::{
ElementState, Event as GlutinEvent, KeyboardInput, ModifiersState, MouseButton, VirtualKeyCode,
WindowEvent,
};
use glutin::event::{ElementState, Event as GlutinEvent, ModifiersState, MouseButton, WindowEvent};
use glutin::event_loop::{ControlFlow, EventLoop, EventLoopProxy, EventLoopWindowTarget};
use glutin::platform::run_return::EventLoopExtRunReturn;
#[cfg(all(feature = "wayland", not(any(target_os = "macos", windows))))]
Expand All @@ -30,7 +27,7 @@ use crossfont::{self, Size};

use x11_dl::keysym::{XK_Control_L, XK_End, XK_Home, XK_E, XK_Q};
use x11_dl::xlib::CurrentTime;
use x11_dl::{xinput2, xlib, xtest};
use x11_dl::{xlib, xtest};

use alacritty_terminal::config::LOG_TARGET_CONFIG;
use alacritty_terminal::event::{Event as TerminalEvent, EventListener, Notify};
Expand Down

0 comments on commit 182468c

Please sign in to comment.