Skip to content

Commit

Permalink
Dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
trevyn committed Aug 3, 2024
1 parent 1d23de2 commit bfed500
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit bfed500

Please sign in to comment.