From 509d6efc78960e053a06ccadcfed47042321fa87 Mon Sep 17 00:00:00 2001 From: Florian Gilcher Date: Tue, 22 Mar 2016 19:56:14 +0100 Subject: [PATCH] Remove rustc_unicode dependency --- src/fmt/fmt.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/fmt/fmt.rs b/src/fmt/fmt.rs index 0eec3faba..45d37ad41 100644 --- a/src/fmt/fmt.rs +++ b/src/fmt/fmt.rs @@ -1,5 +1,5 @@ #![crate_name = "uu_fmt"] -#![feature(str_char, unicode)] +#![feature(str_char)] /* * This file is part of `fmt` from the uutils coreutils package. @@ -11,7 +11,6 @@ */ extern crate getopts; -extern crate rustc_unicode; extern crate unicode_width; #[macro_use]