5a96eea6ba
This fixes error handling for all `wgpu::SurfaceError` variants. It also adds more context to error messages printed by the examples. Closes #346
24 lines
491 B
TOML
24 lines
491 B
TOML
[package]
|
|
name = "invaders"
|
|
version = "0.1.0"
|
|
authors = ["Jay Oster <jay@kodewerx.org>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[features]
|
|
optimize = ["log/release_max_level_warn"]
|
|
default = ["optimize"]
|
|
|
|
[dependencies]
|
|
byteorder = "1"
|
|
env_logger = "0.10"
|
|
error-iter = "0.4"
|
|
game-loop = { version = "=0.10.1", features = ["winit"] }
|
|
getrandom = "0.2"
|
|
gilrs = "0.10"
|
|
log = "0.4"
|
|
pixels = { path = "../.." }
|
|
simple-invaders = { path = "simple-invaders" }
|
|
winit = "0.27"
|
|
winit_input_helper = "0.13"
|