Skip to content

Commit

Permalink
Update for logging moving to liblog
Browse files Browse the repository at this point in the history
  • Loading branch information
cadencemarseille committed Mar 16, 2014
1 parent c123d61 commit 2d3411d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#[allow(unused_must_use)];
#[feature(phase)];

#[phase(syntax, link)] extern crate log;
extern crate rustc;

use rustc::driver::driver::host_triple;
Expand Down
2 changes: 2 additions & 0 deletions src/pcre/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@

#[crate_id = "pcre#0.1"];
#[crate_type = "lib"];
#[feature(phase)];

extern crate collections;
#[phase(syntax, link)] extern crate log;

use collections::treemap::{TreeMap};
use collections::enum_set::{CLike, EnumSet};
Expand Down

0 comments on commit 2d3411d

Please sign in to comment.