aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Collins <[email protected]>2018-02-27 18:03:48 +0000
committerMatthew Collins <[email protected]>2018-02-27 18:11:14 +0000
commit8dfdbcef31be2c98c676a34eed04716a8cc15349 (patch)
tree925f183c43bbb5f67dffede50b5279a307ed0c11
parentAdd a feature for docs-only builds (diff)
downloadarchived-steamworks-rs-8dfdbcef31be2c98c676a34eed04716a8cc15349.tar.xz
archived-steamworks-rs-8dfdbcef31be2c98c676a34eed04716a8cc15349.zip
Update Cargo.toml
-rw-r--r--Cargo.toml10
-rw-r--r--LICENSE-MIT2
-rw-r--r--steamworks-sys/Cargo.toml4
-rw-r--r--steamworks-sys/build.rs2
4 files changed, 16 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 2c643bf..9d0033e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,6 +2,13 @@
name = "steamworks"
version = "0.1.0"
authors = ["matt"]
+description = "Provides rust friendly bindings to the steamworks sdk"
+license = "MIT / Apache-2.0"
+license-file = "LICENSE-MIT"
+repository = "https://github.com/Thinkofname/steamworks-rs"
+documentation = "https://docs.rs/steamworks"
+keywords = ["steam", "gamedev"]
+categories = ["games"]
[features]
default = []
@@ -18,3 +25,6 @@ steamworks-sys = {path = "./steamworks-sys", version = "0.1.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
diff --git a/LICENSE-MIT b/LICENSE-MIT
index 39dd0d0..23e2969 100644
--- a/LICENSE-MIT
+++ b/LICENSE-MIT
@@ -1,4 +1,4 @@
-Copyright (c) 2017 Matthew Collins
+Copyright (c) 2018 Matthew Collins
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/steamworks-sys/Cargo.toml b/steamworks-sys/Cargo.toml
index 59c2b9d..84dff45 100644
--- a/steamworks-sys/Cargo.toml
+++ b/steamworks-sys/Cargo.toml
@@ -3,6 +3,10 @@ name = "steamworks-sys"
version = "0.1.0"
authors = ["matt"]
build = "build.rs"
+description = "Provides raw friendly bindings to the steamworks sdk"
+license = "MIT / Apache-2.0"
+repository = "https://github.com/Thinkofname/steamworks-rs"
+documentation = "https://docs.rs/steamworks-sys"
[features]
diff --git a/steamworks-sys/build.rs b/steamworks-sys/build.rs
index 1c8ed72..8dbf861 100644
--- a/steamworks-sys/build.rs
+++ b/steamworks-sys/build.rs
@@ -9,7 +9,7 @@ fn main() {}
fn main() {
use std::env;
use std::path::Path;
-
+
let sdk_loc = env::var("STEAM_SDK_LOCATION")
.expect("STEAM_SDK_LOCATION must be set");
let sdk_loc = Path::new(&sdk_loc);