diff options
-rw-r--r-- | Cargo.lock | 7 | ||||
-rw-r--r-- | engine/Cargo.toml | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -240,6 +240,7 @@ dependencies = [ "bytemuck", "byteorder", "color_quant", + "jpeg-decoder", "num-rational", "num-traits", "png", @@ -256,6 +257,12 @@ dependencies = [ ] [[package]] +name = "jpeg-decoder" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" + +[[package]] name = "khronos_api" version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/engine/Cargo.toml b/engine/Cargo.toml index 13426b5..3691996 100644 --- a/engine/Cargo.toml +++ b/engine/Cargo.toml @@ -19,4 +19,4 @@ ecs = { path = "../ecs" } [dependencies.image] version = "0.24.7" default-features = false -features = ["png"] +features = ["png", "jpeg"] |