1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-31 13:07:46 +00:00

Update feature flags

This commit is contained in:
Michael Gehring 2015-03-08 19:09:41 +01:00
parent 9f8fd55b4a
commit 3529c5d809
3 changed files with 4 additions and 4 deletions

View file

@ -1,10 +1,10 @@
#![feature(core, env, old_io, old_path)] #![feature(core, exit_status, old_io, old_path)]
use std::env; use std::env;
use std::old_io::{File, Truncate, ReadWrite}; use std::old_io::{File, Truncate, ReadWrite};
use std::old_path::Path; use std::old_path::Path;
static TEMPLATE: &'static str = "\ static TEMPLATE: &'static str = "\
#![feature(env)] #![feature(exit_status)]
extern crate \"@UTIL_CRATE@\" as uu@UTIL_CRATE@; extern crate \"@UTIL_CRATE@\" as uu@UTIL_CRATE@;
use std::env; use std::env;

View file

@ -1,4 +1,4 @@
#![feature(core, env, old_io, old_path)] #![feature(core, exit_status, old_io, old_path)]
use std::env; use std::env;
use std::old_io::{File, Truncate, Write}; use std::old_io::{File, Truncate, Write};

View file

@ -1,5 +1,5 @@
#![crate_name = "uutils"] #![crate_name = "uutils"]
#![feature(core, env, old_path, rustc_private)] #![feature(core, exit_status, old_path, rustc_private)]
/* /*
* This file is part of the uutils coreutils package. * This file is part of the uutils coreutils package.