diff options
author | Joe Wilm <joe@jwilm.com> | 2017-03-01 22:24:37 -0800 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-03-02 09:19:01 -0800 |
commit | 119c7d2856aea24d9d29040b97b778e50c88e70d (patch) | |
tree | 2eac3ed6bb53f883d9e550b06ce9271f22155aa8 /src/lib.rs | |
parent | 55876522a2f4f93ea9ee0e1b4fec9d81621ae0cf (diff) | |
download | alacritty-119c7d2856aea24d9d29040b97b778e50c88e70d.tar.gz alacritty-119c7d2856aea24d9d29040b97b778e50c88e70d.zip |
Add support for wide characters
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 20 |
1 files changed, 7 insertions, 13 deletions
@@ -21,19 +21,18 @@ #![cfg_attr(feature = "clippy", deny(wrong_pub_self_convention))] #![cfg_attr(feature = "nightly", feature(core_intrinsics))] -#[macro_use] -extern crate serde_derive; +#[macro_use] extern crate bitflags; +#[macro_use] extern crate clap; +#[macro_use] extern crate lazy_static; +#[macro_use] extern crate log; +#[macro_use] extern crate serde_derive; extern crate cgmath; -#[macro_use] -extern crate clap; extern crate copypasta; extern crate errno; -extern crate font; extern crate fnv; +extern crate font; extern crate glutin; -#[macro_use] -extern crate lazy_static; extern crate libc; extern crate mio; extern crate notify; @@ -41,16 +40,11 @@ extern crate parking_lot; extern crate serde; extern crate serde_json; extern crate serde_yaml; +extern crate unicode_width; extern crate vte; extern crate xdg; #[macro_use] -extern crate bitflags; - -#[macro_use] -extern crate log; - -#[macro_use] pub mod macros; pub mod ansi; |