-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
68 lines (60 loc) · 1.75 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "ggez"
description = "A lightweight game framework for making 2D games with minimum friction, inspired by Love2D."
version = "0.5.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 <raffomania@gmail.com>",
"Sven-Hendrik Haase <svenstaro@gmail.com>",
"Simon Heath <icefoxen@gmail.com>",
]
edition = "2018"
license = "MIT"
readme = "README.md"
categories = ["game-engines"]
build = "build.rs"
[badges]
maintenance = { status = "passively-maintained" }
[lib]
name = "ggez"
path = "src/lib.rs"
[features]
[dependencies]
bitflags = "1"
cpal = {git = "https://github.com/doukutsu-rs/cpal.git", branch = "android-support"}
directories = "3"
gfx = "0.18"
gfx_core = "0.9"
gfx_device_gl = {git = "https://github.com/doukutsu-rs/gfx.git", branch = "pre-ll"}
glutin = {git = "https://github.com/doukutsu-rs/glutin.git", branch = "master"}
winit = "0.24.0"
image = { version = "0.22", default-features = false, features = ["png_codec", "pnm", "bmp"] }
serde = "1"
serde_derive = "1"
log = "0.4"
lyon = "0.14"
smart-default = "0.6"
strum = "0.18.0"
nalgebra = {version = "0.21", features = ["mint"]}
# Has to be the same version of mint that our math lib uses here.
mint = "0.5"
gilrs = "0.8"
approx = "0.3"
[dev-dependencies]
chrono = "0.4"
fern = "0.5"
rand = "0.7"
structopt = "0.2"
cgmath = { version = "0.17", features = ["mint"]}
skeptic = "0.13"
[build-dependencies]
skeptic = "0.13"
[target.'cfg(target_os = "android")'.dependencies]
ndk = "0.2.0"
ndk-glue = "0.2.0"
jni = "0.17"
glutin_egl_sys = {git = "https://github.com/doukutsu-rs/glutin.git", branch = "master"}
#glutin_egl_sys = {path = "../glutin/glutin_egl_sys"}