mirror of
https://github.com/Llewellynvdm/exa.git
synced 2025-01-14 17:19:56 +00:00
Missed a feature flag...
This commit is contained in:
parent
9c2858e447
commit
d71140079b
@ -1,4 +1,5 @@
|
|||||||
use std::iter::repeat;
|
use std::iter::repeat;
|
||||||
|
use unicode::str::UnicodeStr;
|
||||||
|
|
||||||
use ansi_term::Style;
|
use ansi_term::Style;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
@ -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")]
|
||||||
|
Loading…
Reference in New Issue
Block a user