aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMatthew Collins <[email protected]>2019-03-16 10:57:21 +0000
committerMatthew Collins <[email protected]>2019-03-16 10:57:21 +0000
commit6bcb5567baa03e8e4b00569a3d3634f887482798 (patch)
tree9dc47830f5b0bdf6f0c92861086b8ec81703c8a5 /Cargo.toml
parentAdd basic leaderboard handling (Work on #4) (diff)
downloadsteamworks-rs-6bcb5567baa03e8e4b00569a3d3634f887482798.tar.xz
steamworks-rs-6bcb5567baa03e8e4b00569a3d3634f887482798.zip
Generate the bindings from the provided json file instead of bindgen (Fixes #3)
Allow us to remove the hack for accessing packed structs
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml12
1 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml
index b82a920..8c07058 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -9,6 +9,9 @@ documentation = "https://docs.rs/steamworks"
keywords = ["steam", "gamedev"]
categories = ["games"]
+[package.metadata.docs.rs]
+features = [ "docs-only" ]
+
[features]
default = []
# Skip looking for the steamworks sdk for docs builds
@@ -21,9 +24,6 @@ members = [
[dependencies]
steamworks-sys = {path = "./steamworks-sys", version = "0.3.0"}
-failure = "0.1.1"
-bitflags = "1.0.1"
-libc = "0.2.36"
-
-[package.metadata.docs.rs]
-features = [ "docs-only" ] \ No newline at end of file
+failure = "0.1.5"
+bitflags = "1.0.4"
+libc = "0.2.50"