summaryrefslogtreecommitdiff
path: root/engine/Cargo.toml
blob: 00fe7d0ce93d2181692512657ef31f2582a1dd27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[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"
cstr = "0.2.11"
tracing = { version = "0.1.39", optional = true }
seq-macro = "0.3.5"

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