Files
wgpu/examples/hello/Cargo.toml
Connor Fitzgerald 10172e1f38 Move Examples and Tests to Their Own Crates (#3841)
Co-authored-by: Connor Fitzgerald <connor@modyfi.io>
2023-06-10 18:35:46 +00:00

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