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

Disable unstable warnings for now

This commit is contained in:
Michael Gehring 2015-01-10 20:31:55 +01:00
parent fd2536fc57
commit 4d6cbfa393
82 changed files with 107 additions and 1 deletions

View file

@ -1,8 +1,11 @@
#![allow(unstable)]
use std::io::{File, Truncate, ReadWrite};
use std::os;
use std::path::Path;
static TEMPLATE: &'static str = "\
#![allow(unstable)]
extern crate @UTIL_CRATE@;
use std::os;

View file

@ -1,3 +1,5 @@
#![allow(unstable)]
use std::io::{File, Truncate, Write};
use std::os;
use std::path::Path;

View file

@ -1,4 +1,5 @@
#![crate_name = "base64"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "basename"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,6 @@
#![crate_name = "cat"]
#![allow(unstable)]
#![feature(box_syntax, unsafe_destructor)]
/*

View file

@ -1,4 +1,5 @@
#![crate_name = "chmod"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,6 @@
#![crate_name = "chroot"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.
*

View file

@ -1,4 +1,5 @@
#![crate_name = "cksum"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "comm"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "cp"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "cut"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "dirname"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "du"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "echo"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

1
src/env/env.rs vendored
View file

@ -1,4 +1,5 @@
#![crate_name = "env"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "expand"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "factor"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "uufalse"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,6 @@
#![crate_name = "fmt"]
#![allow(unstable)]
/*
* This file is part of `fmt` from the uutils coreutils package.
*

View file

@ -1,4 +1,5 @@
#![crate_name = "fold"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,6 @@
#![crate_name = "groups"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.
*

View file

@ -1,4 +1,5 @@
#![crate_name = "hashsum"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,6 @@
#![crate_name = "head"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.
*

View file

@ -1,4 +1,5 @@
#![crate_name = "hostid"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,6 @@
#![crate_name = "hostname"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.
*

View file

@ -1,4 +1,5 @@
#![crate_name = "id"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "kill"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "link"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "logname"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "mkdir"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "mkfifo"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "mv"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "nice"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,6 @@
#![crate_name = "nl"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.
*

View file

@ -1,4 +1,5 @@
#![crate_name = "nohup"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "nproc"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "paste"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "printenv"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "pwd"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name= "realpath"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "relpath"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "rm"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "rmdir"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "seq"]
#![allow(unstable)]
// TODO: Make -w flag work with decimals
// TODO: Support -f flag

View file

@ -1,4 +1,5 @@
#![crate_name = "shuf"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "sleep"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "sort"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "split"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "sum"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,6 @@
#![crate_name = "uusync"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.
*

View file

@ -1,4 +1,5 @@
#![crate_name = "tac"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,6 @@
#![crate_name = "tail"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.
*

View file

@ -1,4 +1,6 @@
#![crate_name = "tee"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.
*

View file

@ -1,4 +1,5 @@
#![crate_name = "uutest"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "timeout"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "touch"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "tr"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name= "uutrue"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "truncate"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "tsort"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,5 +1,5 @@
#![crate_name = "tty"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "uname"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "unexpand"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,6 @@
#![crate_name = "uniq"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.
*

View file

@ -1,4 +1,5 @@
#![crate_name = "unlink"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "uptime"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "users"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "uutils"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "wc"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "whoami"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,4 +1,5 @@
#![crate_name = "yes"]
#![allow(unstable)]
/*
* This file is part of the uutils coreutils package.

View file

@ -1,3 +1,5 @@
#![allow(unstable)]
use std::io::process::Command;
use std::str;

View file

@ -1,3 +1,5 @@
#![allow(unstable)]
use std::io::process::Command;
use std::io::File;
use std::io::fs::{unlink, PathExtensions};

View file

@ -1,3 +1,5 @@
#![allow(unstable)]
use std::io::process::Command;
use std::io::fs::{rmdir, PathExtensions};
use std::borrow::ToOwned;

View file

@ -1,3 +1,5 @@
#![allow(unstable)]
extern crate time;
use std::io::{process, fs, FilePermission};

View file

@ -1,3 +1,5 @@
#![allow(unstable)]
use std::io::process::Command;
use std::str;

View file

@ -1,3 +1,5 @@
#![allow(unstable)]
use std::io::process::Command;
use std::str;

View file

@ -1,3 +1,5 @@
#![allow(unstable)]
use std::io::process::Command;
use std::io::File;
use std::string::String;

View file

@ -1,3 +1,5 @@
#![allow(unstable)]
use std::io::process::Command;
static EXE: &'static str = "./test";

View file

@ -1,3 +1,5 @@
#![allow(unstable)]
use std::io::process::Command;
static PROGNAME: &'static str = "./tr";

View file

@ -1,3 +1,5 @@
#![allow(unstable)]
use std::io;
use std::io::process::Command;

View file

@ -1,3 +1,5 @@
#![allow(unstable)]
use std::io::process::Command;
static PROGNAME: &'static str = "./unexpand";