mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
* Reduce repo MSRV from 1.85 to 1.84 Fixes https://github.com/gfx-rs/wgpu/issues/7409 * Replace usage of task::Waker::noop() * Gate waker code to `noop` feature * Remove unused copied waker function * Remove doctest from copied code
12 lines
245 B
TOML
12 lines
245 B
TOML
[package]
|
|
name = "wgpu-example-02-hello-window"
|
|
edition = "2021"
|
|
rust-version = "1.84"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
env_logger = "0.11.6"
|
|
pollster = "0.4"
|
|
wgpu = "24.0.0"
|
|
winit = { version = "0.30.8", features = ["android-native-activity"] }
|