1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

Update to Rust nightly

This commit is contained in:
Brian Anderson 2014-06-11 21:29:16 -07:00
parent 8f56befded
commit ce19eb4329
2 changed files with 2 additions and 4 deletions

View file

@ -14,15 +14,14 @@
extern crate getopts;
extern crate libc;
extern crate sync;
extern crate time;
use std::os;
use std::io::{stderr, fs, FileStat, TypeDirectory};
use std::option::Option;
use std::path::Path;
use std::sync::{Arc, Future};
use time::Timespec;
use sync::{Arc, Future};
#[path = "../common/util.rs"]
mod util;

View file

@ -9,7 +9,6 @@
* file that was distributed with this source code.
*/
extern crate collections;
extern crate getopts;
extern crate base64;
@ -54,7 +53,7 @@ extern crate whoami;
extern crate yes;
use std::os;
use collections::hashmap::HashMap;
use std::collections::hashmap::HashMap;
static NAME: &'static str = "uutils";
static VERSION: &'static str = "1.0.0";