mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 06:44:14 +00:00
06e9876adf
* Move to combined examples * Fix paths * Curtail some tests * Format * Clippy * Fix wasm * Refactor main for wasm * Style sheet * Readme * Lock
64 lines
1.6 KiB
TOML
64 lines
1.6 KiB
TOML
[package]
|
|
name = "wgpu-test"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "common code for wgpu tests"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
autotests = false
|
|
publish = false
|
|
|
|
[[test]]
|
|
name = "wgpu-test"
|
|
path = "tests/root.rs"
|
|
harness = false
|
|
|
|
[features]
|
|
webgl = ["wgpu/webgl"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
arrayvec.workspace = true
|
|
bitflags.workspace = true
|
|
bytemuck.workspace = true
|
|
cfg-if.workspace = true
|
|
ctor.workspace = true
|
|
env_logger.workspace = true
|
|
futures-lite.workspace = true
|
|
heck.workspace = true
|
|
libtest-mimic.workspace = true
|
|
log.workspace = true
|
|
parking_lot.workspace = true
|
|
png.workspace = true
|
|
pollster.workspace = true
|
|
profiling.workspace = true
|
|
serde_json.workspace = true
|
|
serde.workspace = true
|
|
wgpu-macros.workspace = true
|
|
wgpu.workspace = true
|
|
wgt = { workspace = true, features = ["replay"] }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
nv-flip.workspace = true
|
|
parking_lot = { workspace = true, features = ["deadlock_detection"] }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
console_log.workspace = true
|
|
raw-window-handle.workspace = true
|
|
wasm-bindgen.workspace = true
|
|
web-sys = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
naga = { workspace = true, features = ["wgsl-in"] }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
image.workspace = true
|
|
js-sys.workspace = true
|
|
wasm-bindgen-futures.workspace = true
|
|
wasm-bindgen-test.workspace = true
|
|
wasm-bindgen.workspace = true
|
|
web-sys = { workspace = true, features = ["CanvasRenderingContext2d", "Blob"] }
|