Missed a feature flag...

This commit is contained in:
Ben S 2015-03-22 19:54:12 +00:00
parent 9c2858e447
commit d71140079b
3 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,5 @@
use std::iter::repeat;
use unicode::str::UnicodeStr;
use ansi_term::Style;

View File

@ -10,6 +10,7 @@ use std::old_path::GenericPath;
use std::old_path::posix::Path;
use std::ascii::AsciiExt;
use std::os::getcwd;
use unicode::str::UnicodeStr;
use ansi_term::{ANSIString, ANSIStrings, Colour, Style};
use ansi_term::Style::Plain;

View File

@ -1,4 +1,4 @@
#![feature(collections, core, exit_status, io, libc, old_fs, old_io, old_path, os, std_misc)]
#![feature(collections, core, exit_status, io, libc, old_fs, old_io, old_path, os, std_misc, unicode)]
#![allow(deprecated)]
// Other platforms than macos don't need std_misc but you can't
@ -12,6 +12,7 @@ extern crate locale;
extern crate natord;
extern crate number_prefix;
extern crate pad;
extern crate unicode;
extern crate users;
#[cfg(feature="git")]