aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Collins <[email protected]>2018-02-15 18:42:16 +0000
committerMatthew Collins <[email protected]>2018-02-15 18:42:16 +0000
commit031b910773cc3e7140a75b7470d2dab96c8e693f (patch)
tree5dc7188270d7cf8d0d43e2d4415a3b2ef93d86ad
parentUpdate bitflags (diff)
downloadsteamworks-rs-031b910773cc3e7140a75b7470d2dab96c8e693f.tar.xz
steamworks-rs-031b910773cc3e7140a75b7470d2dab96c8e693f.zip
Update deps
-rw-r--r--Cargo.toml4
-rw-r--r--steamworks-sys/Cargo.toml4
-rw-r--r--steamworks-sys/build.rs4
3 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0fd122d..759d4b7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,5 +11,5 @@ members = [
[dependencies]
steamworks-sys = {path = "./steamworks-sys"}
error-chain = "0.11.0"
-bitflags = "1.0.0"
-libc = "0.2" \ No newline at end of file
+bitflags = "1.0.1"
+libc = "0.2.36"
diff --git a/steamworks-sys/Cargo.toml b/steamworks-sys/Cargo.toml
index 085e514..b672938 100644
--- a/steamworks-sys/Cargo.toml
+++ b/steamworks-sys/Cargo.toml
@@ -5,7 +5,7 @@ authors = ["matt"]
build = "build.rs"
[dependencies]
-libc = "0.2"
+libc = "0.2.36"
[build-dependencies]
-gcc = "0.3.53" \ No newline at end of file
+cc = "1.0.4"
diff --git a/steamworks-sys/build.rs b/steamworks-sys/build.rs
index af75439..475470c 100644
--- a/steamworks-sys/build.rs
+++ b/steamworks-sys/build.rs
@@ -1,5 +1,5 @@
-extern crate gcc;
+extern crate cc;
use std::env;
use std::path::Path;
@@ -32,7 +32,7 @@ fn main() {
println!("cargo:rustc-link-search={}", path.display());
println!("cargo:rustc-link-lib=dylib={}", lib);
- gcc::Build::new()
+ cc::Build::new()
.cpp(true)
.include(sdk_loc.join("public/steam"))
.file("src/lib.cpp")