aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml4
-rw-r--r--steamworks-sys/Cargo.toml3
-rwxr-xr-xsteamworks-sys/build.rs1
3 files changed, 3 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 8c07058..d1443ff 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "steamworks"
-version = "0.4.1"
+version = "0.5.0"
authors = ["Thinkofname"]
description = "Provides rust friendly bindings to the steamworks sdk"
license = "MIT / Apache-2.0"
@@ -23,7 +23,7 @@ members = [
]
[dependencies]
-steamworks-sys = {path = "./steamworks-sys", version = "0.3.0"}
+steamworks-sys = {path = "./steamworks-sys", version = "0.4.0"}
failure = "0.1.5"
bitflags = "1.0.4"
libc = "0.2.50"
diff --git a/steamworks-sys/Cargo.toml b/steamworks-sys/Cargo.toml
index e46410d..3d6e63b 100644
--- a/steamworks-sys/Cargo.toml
+++ b/steamworks-sys/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "steamworks-sys"
-version = "0.3.1"
+version = "0.4.0"
authors = ["Thinkofname"]
build = "build.rs"
description = "Provides raw bindings to the steamworks sdk"
@@ -23,7 +23,6 @@ libc = "0.2.50"
[build-dependencies]
cc = "1.0.31"
-bindgen = {git = "https://github.com/rust-lang/rust-bindgen.git"} # "0.48.1"
serde = "1.0.89"
serde_derive = "1.0.89"
serde_json = "1.0.39"
diff --git a/steamworks-sys/build.rs b/steamworks-sys/build.rs
index c68259c..0f2295a 100755
--- a/steamworks-sys/build.rs
+++ b/steamworks-sys/build.rs
@@ -1,4 +1,3 @@
-extern crate bindgen;
extern crate cc;
extern crate serde_json;
#[macro_use]