summaryrefslogtreecommitdiff
path: root/engine/Cargo.toml
blob: f6cd5cf03cd6fbac9baa0ed8a54e34ed6a48b89f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "engine"
version = "0.1.0"
edition = "2021"

[dependencies]
glfw = { path = "../glfw", features = ["opengl"] }
thiserror = "1.0.49"
gl = "0.14.0"
bitflags = "2.4.0"
tracing = "0.1.39"
seq-macro = "0.3.5"
paste = "1.0.14"
ecs = { path = "../ecs" }
util-macros = { path = "../util-macros" }

[dependencies.image]
version = "0.24.7"
default-features = false
features = ["png", "jpeg"]