From bfed50019bdab9089b8bf80eca27181bf654140c Mon Sep 17 00:00:00 2001 From: trevyn <230691+trevyn@users.noreply.github.com> Date: Sun, 4 Aug 2024 00:20:35 +0400 Subject: [PATCH] Dependency updates --- CHANGELOG.md | 8 +++++--- Cargo.toml | 14 +++++++------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a6edf3..507481c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,9 +14,11 @@ This project adheres to Semantic Versioning. ### Changed -* **Breaking:** Updated `vek` to 0.16. -* Updated `sdl2` to 0.36. -* Updated `glow` to 0.13. +* **Breaking:** Updated `vek` to 0.17. +* **Breaking:** Updated `rodio` to 0.19. +* **Breaking:** Updated `image` to 0.25. +* Updated `sdl2` to 0.37. +* Updated `glow` to 0.14. * Updated `hashbrown` to 0.14. ## [0.8.0] - 2023-03-17 diff --git a/Cargo.toml b/Cargo.toml index 616910f..8fb0049 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,11 +12,11 @@ keywords = ["game", "engine", "framework", "gamedev"] categories = ["game-engines"] [dependencies] -sdl2 = "0.36.0" -rodio = { version = "0.17.3", optional = true, default-features = false } -glow = "0.13.0" -image = { version = "0.24.1", default-features = false } -vek = { version = "0.16.1", default-features = false } +sdl2 = "0.37.0" +rodio = { version = "0.19.0", optional = true, default-features = false } +glow = "0.14.0" +image = { version = "0.25.0", default-features = false } +vek = { version = "0.17.0", default-features = false } hashbrown = "0.14.3" serde = { version = "1.0.104", optional = true } ab_glyph = { version = "0.2.2", optional = true } @@ -59,14 +59,14 @@ font_ttf = ["ab_glyph"] # Enables support for texture formats. texture_png = ["image/png"] -texture_jpeg = ["image/jpeg", "image/jpeg_rayon"] +texture_jpeg = ["image/jpeg"] texture_gif = ["image/gif"] texture_bmp = ["image/bmp"] texture_ico = ["image/ico"] texture_tiff = ["image/tiff"] texture_webp = ["image/webp"] texture_pnm = ["image/pnm"] -texture_dds = ["image/dds", "image/dxt"] +texture_dds = ["image/dds"] texture_tga = ["image/tga"] # Enables support for serialization/deserialization via Serde.