diff options
| author | Matthew Collins <[email protected]> | 2019-03-16 10:57:21 +0000 |
|---|---|---|
| committer | Matthew Collins <[email protected]> | 2019-03-16 10:57:21 +0000 |
| commit | 6bcb5567baa03e8e4b00569a3d3634f887482798 (patch) | |
| tree | 9dc47830f5b0bdf6f0c92861086b8ec81703c8a5 /Cargo.toml | |
| parent | Add basic leaderboard handling (Work on #4) (diff) | |
| download | steamworks-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.toml | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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" |