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

phase(syntax) -> phase(plugin)

This commit is contained in:
Brian Anderson 2014-06-11 21:43:47 -07:00
parent bad19f6016
commit 107c2d4c62
5 changed files with 5 additions and 5 deletions

View file

@ -15,7 +15,7 @@
extern crate serialize;
extern crate getopts;
extern crate libc;
#[phase(syntax, link)] extern crate log;
#[phase(plugin, link)] extern crate log;
use std::io::{println, File, stdin, stdout};
use std::os;

View file

@ -12,7 +12,7 @@
*/
extern crate getopts;
#[phase(syntax, link)] extern crate log;
#[phase(plugin, link)] extern crate log;
use std::os;
use std::io;

View file

@ -18,7 +18,7 @@ extern crate serialize;
extern crate libc;
#[phase(syntax, link)] extern crate log;
#[phase(plugin, link)] extern crate log;
use std::os;

View file

@ -17,7 +17,7 @@ extern crate libc;
extern crate collections;
extern crate serialize;
#[phase(syntax, link)] extern crate log;
#[phase(plugin, link)] extern crate log;
use std::os;
use std::from_str::from_str;

View file

@ -13,7 +13,7 @@
*/
extern crate getopts;
#[phase(syntax, link)] extern crate log;
#[phase(plugin, link)] extern crate log;
use std::io::{println, stdin, stdout, Append, File, Truncate, Write};
use std::io::{IoResult};