wgpu/tests/Cargo.toml

61 lines
1.6 KiB
TOML
Raw Normal View History

[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"
2023-10-19 16:06:42 +00:00
harness = false
[features]
webgl = ["wgpu/webgl"]
[dependencies]
2023-10-19 16:06:42 +00:00
anyhow.workspace = true
arrayvec.workspace = true
bitflags.workspace = true
2023-07-19 21:48:23 +00:00
bytemuck.workspace = true
cfg-if.workspace = true
2023-10-19 16:06:42 +00:00
ctor.workspace = true
futures-lite.workspace = true
itertools.workspace = true
2023-10-19 16:06:42 +00:00
libtest-mimic.workspace = true
log.workspace = true
parking_lot.workspace = true
png.workspace = true
2023-07-19 21:48:23 +00:00
pollster.workspace = true
2023-10-30 03:58:32 +00:00
profiling.workspace = true
2023-10-19 16:06:42 +00:00
serde_json.workspace = true
serde.workspace = true
strum = { workspace = true, features = ["derive"] }
2023-10-19 16:06:42 +00:00
wgpu-macros.workspace = true
wgpu = { workspace = true, features = ["wgsl"] }
wgt = { workspace = true, features = ["serde"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
env_logger.workspace = true
nv-flip.workspace = true
parking_lot = { workspace = true, features = ["deadlock_detection"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_log.workspace = true
wasm-bindgen.workspace = true
web-sys = { workspace = true }
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
image.workspace = true
2023-07-19 21:48:23 +00:00
js-sys.workspace = true
wasm-bindgen-futures.workspace = true
wasm-bindgen-test.workspace = true
2023-07-19 21:48:23 +00:00
wasm-bindgen.workspace = true
web-sys = { workspace = true, features = ["CanvasRenderingContext2d", "Blob"] }