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

[features]
debug = ["dep:tracing"]

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

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