-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
90 lines (83 loc) · 2.08 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[package]
name = "ggez"
description = "A lightweight game framework for making 2D games with minimum friction, inspired by Love2D."
version = "0.9.3"
homepage = "https://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]>",
]
edition = "2021"
license = "MIT"
readme = "README.md"
categories = ["game-engines"]
build = "build.rs"
exclude = ["docs", "resources", "!LiberationMono-Regular.ttf"]
[lib]
name = "ggez"
path = "src/lib.rs"
[features]
default = ["c_dependencies", "audio", "gamepad"]
zip-compression = ["zip/bzip2", "zip/zstd"]
mp3 = ["rodio/mp3"]
multithread-image-decoding = ["image/hdr", "image/jpeg_rayon"]
c_dependencies = ["zip-compression", "mp3"]
audio = ["rodio"]
gamepad = ["gilrs"]
[dependencies]
bitflags = "2.1"
zip = { version = "0.6", default-features = false, features = ["deflate"] }
directories = "5.0"
wgpu = "0.16"
glyph_brush = "0.7"
winit = { version = "0.28.3", features = ["serde"] }
image = { version = "0.24", default-features = false, features = [
"gif",
"png",
"pnm",
"tga",
"tiff",
"webp",
"bmp",
"dxt",
"jpeg"
] }
rodio = { version = "0.17", optional = true, default-features = false, features = [
"flac",
"vorbis",
"wav",
] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.5"
log = "0.4"
lyon = "1.0"
smart-default = "0.7"
glam = { version = "0.24", features = ["mint"] }
# Has to be the same version of mint that our math lib uses here.
mint = "0.5.9"
gilrs = { version = "0.10", optional = true }
approx = "0.5"
bytemuck = { version = "1.12", features = ["derive"] }
pollster = "0.3"
memoffset = "0.8"
crevice = "0.13"
typed-arena = "2.0"
ordered-float = "3.3"
[dev-dependencies]
chrono = "0.4"
fern = "0.6"
oorandom = "11"
argh = "0.1"
rand = "0.8"
keyframe = "1"
keyframe_derive = "1"
num-traits = "0.2"
num-derive = "0.3"
skeptic = "0.13"
getrandom = "0.2"
[build-dependencies]
skeptic = "0.13"