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 std::iter::repeat;
use unicode::str::UnicodeStr;
use ansi_term::Style; use ansi_term::Style;

View File

@ -10,6 +10,7 @@ use std::old_path::GenericPath;
use std::old_path::posix::Path; use std::old_path::posix::Path;
use std::ascii::AsciiExt; use std::ascii::AsciiExt;
use std::os::getcwd; use std::os::getcwd;
use unicode::str::UnicodeStr;
use ansi_term::{ANSIString, ANSIStrings, Colour, Style}; use ansi_term::{ANSIString, ANSIStrings, Colour, Style};
use ansi_term::Style::Plain; 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)] #![allow(deprecated)]
// Other platforms than macos don't need std_misc but you can't // 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 natord;
extern crate number_prefix; extern crate number_prefix;
extern crate pad; extern crate pad;
extern crate unicode;
extern crate users; extern crate users;
#[cfg(feature="git")] #[cfg(feature="git")]