Skip to content

Commit

Permalink
Merge pull request #90 from tomassedovic/rust-master
Browse files Browse the repository at this point in the history
Update to Rust master
  • Loading branch information
tomassedovic committed Jan 29, 2015
2 parents 53b1d29 + 8a16abd commit 561bc6b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tcod"
description = "The Rust bindings for the Doryen library (a.k.a. libtcod)."
version = "0.4.5"
version = "0.4.6"
homepage = "https://github.com/tomassedovic/tcod-rs"
repository = "https://github.com/tomassedovic/tcod-rs"
readme = "README.md"
Expand All @@ -25,7 +25,7 @@ bitflags = "0.1"

[dependencies.tcod-sys]
path = "tcod-sys"
version = "2.0.2"
version = "2.0.3"

# TODO: temporarily disabling debuginfo until this is fixed:
# https://github.com/rust-lang/rust/issues/17257
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1045,7 +1045,7 @@ pub enum BackgroundFlag {
pub mod system {
use std;
use std::num::FromPrimitive;
use std::io::fs::PathExtensions;
use std::old_io::fs::PathExtensions;
use std::time::Duration;
use ffi;
use libc::c_char;
Expand Down
2 changes: 1 addition & 1 deletion tcod-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tcod-sys"
description = "Raw FFI bindings & build script to link against libtcod."
version = "2.0.2"
version = "2.0.3"
license = "WTFPL"
homepage = "https://github.com/tomassedovic/tcod-rs"
repository = "https://github.com/tomassedovic/tcod-rs/tree/master/tcod-sys"
Expand Down
2 changes: 1 addition & 1 deletion tcod-sys/build.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// TODO(shadower): remove this once the dust settles around path and IO:
#![allow(unstable)]

use std::io::{fs, Command};
use std::old_io::{fs, Command};
use std::os;


Expand Down

0 comments on commit 561bc6b

Please sign in to comment.