mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-21 22:33:49 +00:00
23 lines
602 B
TOML
23 lines
602 B
TOML
[package]
|
|
name = "cts_runner"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Luca Casonato <hello@lcas.dev>"
|
|
]
|
|
edition.workspace = true
|
|
description = "CTS runner for wgpu"
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
# We make all dependencies conditional on not being wasm,
|
|
# so the whole workspace can built as wasm.
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
deno_console.workspace = true
|
|
deno_core.workspace = true
|
|
deno_url.workspace = true
|
|
deno_web.workspace = true
|
|
deno_webidl.workspace = true
|
|
deno_webgpu.workspace = true
|
|
tokio = { workspace = true, features = ["full"] }
|
|
termcolor.workspace = true
|