diff options
author | Nathan Lilienthal <nathan@nixpulvis.com> | 2019-05-03 19:48:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-03 19:48:25 -0400 |
commit | 34c54e7e0eb7c28406df112d118b82280be2adee (patch) | |
tree | 7b32e11bed7906d67d43da81bd8e8b08f128660d /alacritty_terminal/src/event.rs | |
parent | ba6e208a95e37116b031aca02246d3cff04c0216 (diff) | |
download | alacritty-34c54e7e0eb7c28406df112d118b82280be2adee.tar.gz alacritty-34c54e7e0eb7c28406df112d118b82280be2adee.zip |
Add git hash to version string, and fix crate name (#2397)
This moves `cli` out of `alacritty_terminal` and into `alacritty` where
it belongs, along with the `clap` dependency.
Diffstat (limited to 'alacritty_terminal/src/event.rs')
-rw-r--r-- | alacritty_terminal/src/event.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/alacritty_terminal/src/event.rs b/alacritty_terminal/src/event.rs index f27a6caa..31fa5954 100644 --- a/alacritty_terminal/src/event.rs +++ b/alacritty_terminal/src/event.rs @@ -13,9 +13,8 @@ use glutin::{self, ElementState, Event, ModifiersState, MouseButton}; use parking_lot::MutexGuard; use serde_json as json; -use crate::cli::Options; use crate::clipboard::ClipboardType; -use crate::config::{self, Config}; +use crate::config::{self, Config, Options}; use crate::display::OnResize; use crate::grid::Scroll; use crate::index::{Column, Line, Point, Side}; |