Skip to content

Commit

Permalink
Merge pull request #111 from aftix/master
Browse files Browse the repository at this point in the history
Bump wgpu to 22.1
  • Loading branch information
Yatekii authored Oct 23, 2024
2 parents e2e6335 + 3594de7 commit 2edd348
Show file tree
Hide file tree
Showing 7 changed files with 1,014 additions and 660 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Per Keep a Changelog there are 6 main categories of changes:

- Internal: Fixed Scissor-Rect to not span across Framebuffersize, by limiting to framebuffer width. @PixelboysTM
- Bump wgpu version to 0.19. @mkrasnitski and @calcoph
- Bump wgpu version to 22.1. @aftix

## v0.24.0

Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "imgui-wgpu"
version = "0.24.0"
version = "0.25.0"
authors = ["Noah Hüsser <[email protected]>", "Connor Fitzgerald <[email protected]>", "Steven Wittens <[email protected]>"]
edition = "2021"
description = "A wgpu render backend for imgui-rs."
Expand Down Expand Up @@ -46,17 +46,17 @@ bytemuck = "1"
imgui = "0.12"
log = "0.4"
smallvec = "1"
wgpu = "0.19"
wgpu = "22.1"

[dev-dependencies]
bytemuck = { version = "1.13", features = ["derive"] }
cgmath = "0.18"
env_logger = "0.10"
image = { version = "0.24", default-features = false, features = ["png"] }
imgui-winit-support = "0.12"
imgui-winit-support = "0.13"
pollster = "0.3"
raw-window-handle = "0.5"
winit = "0.29"
winit = "0.30"

[package.metadata.docs.rs]
all-features = true
5 changes: 4 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ allow = [
[bans]
multiple-versions = "deny"
skip = [
{ name = "syn", version = "2.0.82" },
{ name = "bitflags", version = "1.3.2" },
{ name = "hashbrown", version = "0.14.5" },
]
skip-tree = [
{ name = "winit", version = "0.27.5" },
Expand All @@ -26,4 +29,4 @@ ignore = [

[sources]
unknown-registry = "deny"
unknown-git = "allow"
unknown-git = "allow"
Loading

0 comments on commit 2edd348

Please sign in to comment.