Skip to content

Commit

Permalink
Merge pull request #77 from tomassedovic/clear-warnings-in-tcod-sys
Browse files Browse the repository at this point in the history
Clear warnings in tcod sys

Fixes #76
  • Loading branch information
tomassedovic committed Jan 12, 2015
2 parents 4426ed5 + e0990fc commit 15aab66
Show file tree
Hide file tree
Showing 5 changed files with 484 additions and 2,905 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.0"
version = "0.4.1"
homepage = "https://github.com/tomassedovic/tcod-rs"
repository = "https://github.com/tomassedovic/tcod-rs"
readme = "README.md"
Expand All @@ -22,7 +22,7 @@ path = "src/lib.rs"

[dependencies.tcod-sys]
path = "tcod-sys"
version = "1.5.2"
version = "2.0.0"

# TODO: temporarily disabling debuginfo until this is fixed:
# https://github.com/rust-lang/rust/issues/17257
Expand Down
2 changes: 1 addition & 1 deletion tcod-sys/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 = "1.5.2"
version = "2.0.0"
license = "WTFPL"
homepage = "https://github.com/tomassedovic/tcod-rs"
repository = "https://github.com/tomassedovic/tcod-rs/tree/master/tcod-sys"
Expand Down
3 changes: 3 additions & 0 deletions tcod-sys/build.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// TODO(shadower): remove this once the dust settles around path and IO:
#![allow(unstable)]

use std::io::{fs, Command};
use std::io::process::InheritFd;
use std::os;
Expand Down
Loading

0 comments on commit 15aab66

Please sign in to comment.