summaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-11-12 23:24:54 +0100
committerHampusM <hampus@hampusmat.com>2023-11-12 23:24:54 +0100
commitd3f35b7be8398f9027eeb3f7f6a78d51b1627375 (patch)
tree1b91699a070ba84d4de6f85f8908293b6b7735b9 /engine
parentf41dc3c52e396dd7ed9e94518dba904b17cd3936 (diff)
build(engine): disable default features of image dependency
Diffstat (limited to 'engine')
-rw-r--r--engine/Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/engine/Cargo.toml b/engine/Cargo.toml
index d3de446..db30fff 100644
--- a/engine/Cargo.toml
+++ b/engine/Cargo.toml
@@ -13,4 +13,8 @@ gl = "0.14.0"
bitflags = "2.4.0"
cstr = "0.2.11"
tracing = { version = "0.1.39", optional = true }
-image = "0.24.7"
+
+[dependencies.image]
+version = "0.24.7"
+default-features = false
+features = ["png"]