mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
17 lines
318 B
TOML
17 lines
318 B
TOML
[package]
|
|
name = "wgpu-example-custom-backend"
|
|
edition = "2021"
|
|
rust-version = "1.84"
|
|
publish = false
|
|
|
|
[features]
|
|
default = ["web"]
|
|
web = ["wgpu/web"]
|
|
|
|
[dependencies]
|
|
wgpu = { version = "26.0.0", features = [
|
|
"custom",
|
|
"wgsl",
|
|
], default-features = false }
|
|
pollster = { version = "0.4", features = ["macro"] }
|