5a96eea6ba
This fixes error handling for all `wgpu::SurfaceError` variants. It also adds more context to error messages printed by the examples. Closes #346
29 lines
634 B
TOML
29 lines
634 B
TOML
[package]
|
|
name = "minimal-web"
|
|
version = "0.1.0"
|
|
authors = ["Jay Oster <jay@kodewerx.org>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[features]
|
|
optimize = ["log/release_max_level_warn"]
|
|
default = ["optimize"]
|
|
|
|
[dependencies]
|
|
error-iter = "0.4"
|
|
log = "0.4"
|
|
pixels = { path = "../.." }
|
|
winit = "0.27"
|
|
winit_input_helper = "0.13"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
console_error_panic_hook = "0.1"
|
|
console_log = "0.2"
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-futures = "0.4"
|
|
web-sys = { version = "0.3", features = ["GpuTextureFormat"] }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
env_logger = "0.10"
|
|
pollster = "0.2"
|