1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-03 22:47:46 +00:00

Remove rustc_unicode dependency

This commit is contained in:
Florian Gilcher 2016-03-22 19:56:14 +01:00
parent 6e629b1115
commit 509d6efc78

View file

@ -1,5 +1,5 @@
#![crate_name = "uu_fmt"] #![crate_name = "uu_fmt"]
#![feature(str_char, unicode)] #![feature(str_char)]
/* /*
* This file is part of `fmt` from the uutils coreutils package. * This file is part of `fmt` from the uutils coreutils package.
@ -11,7 +11,6 @@
*/ */
extern crate getopts; extern crate getopts;
extern crate rustc_unicode;
extern crate unicode_width; extern crate unicode_width;
#[macro_use] #[macro_use]