diff options
author | Joe Wilm <joe@jwilm.com> | 2016-06-09 08:16:44 -0700 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-06-09 08:16:44 -0700 |
commit | a60dbd564b44161f92a26ae401cf9b3ce5add982 (patch) | |
tree | c684bb86f9f909c521e091b73a45da05734a25b5 | |
parent | aff56a65a4e49d07ca00636fc33cb2141409f6b3 (diff) | |
download | alacritty-a60dbd564b44161f92a26ae401cf9b3ce5add982.tar.gz alacritty-a60dbd564b44161f92a26ae401cf9b3ce5add982.zip |
Sort some imports
-rw-r--r-- | src/main.rs | 12 |
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)] |