forked from Noxime/steamworks-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 907 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "steamworks"
version = "0.7.0"
authors = ["Thinkofname"]
description = "Provides rust friendly bindings to the steamworks sdk"
license = "MIT / Apache-2.0"
repository = "https://github.com/Thinkofname/steamworks-rs"
documentation = "https://docs.rs/steamworks"
keywords = ["steam", "gamedev"]
categories = ["games"]
edition = "2018"
[package.metadata.docs.rs]
features = [ "docs-only" ]
[features]
default = []
raw-bindings = []
# Skip looking for the steamworks sdk for docs builds
docs-only = ["steamworks-sys/docs-only"]
[workspace]
members = [
"./steamworks-sys",
"examples/chat-example"
]
[dependencies]
steamworks-sys = {path = "./steamworks-sys", version = "0.7.0"}
thiserror = "1.0.24"
bitflags = "1.2.1"
lazy_static = "1.4.0"
serde = { version = "1.0.123", features = ["derive"], optional = true }
[dev-dependencies]
serial_test = "0.5.1"
serial_test_derive = "0.5.1"