-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (44 loc) · 1.05 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "ggez"
description = "A lightweight game framework for making 2D games with minimum friction, inspired by Love2D."
version = "0.4.1"
homepage = "http://ggez.rs"
repository = "https://github.com/ggez/ggez"
documentation = "https://docs.rs/ggez"
keywords = ["ggez", "graphics", "2D", "game", "engine"]
authors = [
"Rafael Epplee <[email protected]>",
"Sven-Hendrik Haase <[email protected]>",
"Simon Heath <[email protected]>",
]
license = "MIT"
readme = "README.md"
categories = ["game-engines"]
[badges]
maintenance = { status = "actively-developed" }
[lib]
name = "ggez"
path = "src/lib.rs"
[features]
# If this feature is enabled, it will add <cargo root dir>/resources/ to
# the resource search path.
cargo-resource-root = []
[dependencies]
rusttype = "0.3"
zip = "0.2"
app_dirs = "1"
gfx = "0.17"
gfx_device_gl = "0.15"
gfx_window_sdl = "0.8"
image = "0.18"
sdl2 = "0.31"
rodio = "0.5"
serde = "1.0"
serde_derive = "1.0"
toml = "0.4"
lyon = "0.10"
smart-default = "0.2"
nalgebra = "0.14"
[dev-dependencies]
rand = "0.3"
clap = "2"