summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorBen S <ogham@bsago.me>2015-04-23 13:46:37 +0100
committerBen S <ogham@bsago.me>2015-04-23 13:46:37 +0100
commitd7d11f77f3a6cbc71e013a3c57eb78d5352b2a5e (patch)
tree1d6c5f14daf813ba8be96730ac78deec8bbabc87 /src/main.rs
parentadbaa51cb9421df43625b96ea3ea39b455fd5ee4 (diff)
Use unicode_width crate
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index e7faf65..0428681 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,4 +1,4 @@
-#![feature(convert, core, exit_status, fs_ext, fs_time, io, libc, os, scoped, std_misc, unicode)]
+#![feature(collections, convert, core, exit_status, fs_ext, fs_time, io, libc, os, scoped, std_misc)]
#![allow(deprecated)]
// Other platforms than macos don't need std_misc but you can't
@@ -14,6 +14,8 @@ extern crate num_cpus;
extern crate number_prefix;
extern crate pad;
extern crate users;
+extern crate unicode_width;
+
#[cfg(feature="git")]
extern crate git2;