aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Wilm <joe@jwilm.com>2016-06-09 08:16:44 -0700
committerJoe Wilm <joe@jwilm.com>2016-06-09 08:16:44 -0700
commita60dbd564b44161f92a26ae401cf9b3ce5add982 (patch)
treec684bb86f9f909c521e091b73a45da05734a25b5
parentaff56a65a4e49d07ca00636fc33cb2141409f6b3 (diff)
downloadalacritty-a60dbd564b44161f92a26ae401cf9b3ce5add982.tar.gz
alacritty-a60dbd564b44161f92a26ae401cf9b3ce5add982.zip
Sort some imports
-rw-r--r--src/main.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main.rs b/src/main.rs
index 76216685..ed62dac0 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -30,21 +30,21 @@ mod ansi;
mod term;
mod util;
-use std::sync::mpsc;
use std::collections::HashMap;
+use std::fs::File;
use std::io::{BufReader, Read, BufRead, Write, BufWriter};
use std::sync::Arc;
-use std::fs::File;
+use std::sync::mpsc;
use std::os::unix::io::{FromRawFd, AsRawFd};
-use renderer::{QuadRenderer, GlyphCache, LoadGlyph};
-use text::FontDesc;
use grid::Grid;
-use term::Term;
use meter::Meter;
-use util::thread;
+use renderer::{QuadRenderer, GlyphCache, LoadGlyph};
+use term::Term;
+use text::FontDesc;
use tty::process_should_exit;
+use util::thread;
/// Things that the render/update thread needs to respond to
#[derive(Debug)]