diff options
| author | Matthew Collins <[email protected]> | 2018-02-27 18:03:48 +0000 |
|---|---|---|
| committer | Matthew Collins <[email protected]> | 2018-02-27 18:11:14 +0000 |
| commit | 8dfdbcef31be2c98c676a34eed04716a8cc15349 (patch) | |
| tree | 925f183c43bbb5f67dffede50b5279a307ed0c11 /steamworks-sys | |
| parent | Add a feature for docs-only builds (diff) | |
| download | steamworks-rs-8dfdbcef31be2c98c676a34eed04716a8cc15349.tar.xz steamworks-rs-8dfdbcef31be2c98c676a34eed04716a8cc15349.zip | |
Update Cargo.toml
Diffstat (limited to 'steamworks-sys')
| -rw-r--r-- | steamworks-sys/Cargo.toml | 4 | ||||
| -rw-r--r-- | steamworks-sys/build.rs | 2 |
2 files changed, 5 insertions, 1 deletions
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); |