mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
28 lines
554 B
TOML
28 lines
554 B
TOML
[package]
|
|
name = "wgpu-hello-example"
|
|
version.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
description = "wgpu hello example"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "hello"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
env_logger.workspace = true
|
|
glam.workspace = true
|
|
log.workspace = true
|
|
pollster.workspace = true
|
|
wgpu.workspace = true
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
console_error_panic_hook.workspace = true
|
|
console_log.workspace = true
|
|
wasm-bindgen-futures.workspace = true
|
|
|
|
[dev-dependencies]
|
|
wgpu-test.workspace = true
|
|
|