-
Notifications
You must be signed in to change notification settings - Fork 110
/
Cargo.toml
37 lines (33 loc) · 929 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.11.0"
authors = ["Thinkofname"]
description = "Provides rust friendly bindings to the steamworks sdk"
license = "MIT / Apache-2.0"
repository = "https://github.com/Noxime/steamworks-rs"
documentation = "https://docs.rs/steamworks"
keywords = ["steam", "gamedev"]
categories = ["games"]
edition = "2021"
rust-version = "1.73.0"
[features]
default = []
raw-bindings = []
image = ["dep:image"]
[workspace]
members = [
"./steamworks-sys",
"examples/chat-example",
"examples/workshop",
"examples/lobby", "examples/networking-messages",
]
[dependencies]
steamworks-sys = { path = "./steamworks-sys", version = "0.11.0" }
thiserror = "1.0"
bitflags = "1.2"
lazy_static = "1.4"
serde = { version = "1.0", features = ["derive"], optional = true }
paste = "1.0.11"
image = { version = "0.25.1", optional = true, default-features = false }
[dev-dependencies]
serial_test = "1"