Upgrade to wgpu 25
This commit is contained in:
parent
a456d1c17b
commit
1b72c1fe9e
2 changed files with 5 additions and 5 deletions
|
|
@ -7,14 +7,14 @@ repository = "https://github.com/iced-rs/cryoglyph"
|
|||
license = "MIT OR Apache-2.0 OR Zlib"
|
||||
|
||||
[dependencies]
|
||||
wgpu = { version = "24", default-features = false, features = ["wgsl"] }
|
||||
etagere = "0.2.10"
|
||||
wgpu = { version = "25", default-features = false, features = ["wgsl"] }
|
||||
etagere = "0.2.15"
|
||||
cosmic-text = "0.14"
|
||||
lru = { version = "0.12.1", default-features = false }
|
||||
lru = { version = "0.13", default-features = false }
|
||||
rustc-hash = "2.0"
|
||||
|
||||
[dev-dependencies]
|
||||
wgpu = "24"
|
||||
wgpu = "25"
|
||||
winit = "0.30"
|
||||
pollster = "0.4"
|
||||
criterion = { version = "0.5", features = ["html_reports"] }
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ impl WindowState {
|
|||
.await
|
||||
.unwrap();
|
||||
let (device, queue) = adapter
|
||||
.request_device(&DeviceDescriptor::default(), None)
|
||||
.request_device(&DeviceDescriptor::default())
|
||||
.await
|
||||
.unwrap();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue