Skip to content

Commit

Permalink
Update for rust nightly eaf4c5c78, changing usages of std::io to std:…
Browse files Browse the repository at this point in the history
…:old_io. This releases version 0.1.9.
  • Loading branch information
daboross committed Feb 3, 2015
1 parent 2054990 commit 91f3a24
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "fern"
version = "0.1.8"
version = "0.1.9"
authors = ["Dabo Ross <daboross@daboross.net>"]
description = "Fern is a simple runtime-configurable logging library"

Expand Down
4 changes: 2 additions & 2 deletions src/config.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::io;
use std::io::stdio;
use std::old_io as io;
use std::old_io::stdio;

use api;
use loggers;
Expand Down
4 changes: 2 additions & 2 deletions src/errors.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use std::io;
use std::old_io as io;
use std::sync;
use std::error;

#[derive(Show)]
#[derive(Debug)]
pub enum Error {
Io(io::IoError),
Poison(String),
Expand Down
4 changes: 2 additions & 2 deletions src/loggers.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::io;
use std::io::stdio;
use std::old_io as io;
use std::old_io::stdio;
use std::sync;

use errors::Error;
Expand Down

0 comments on commit 91f3a24

Please sign in to comment.