mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
* Add new presentation modes * Expand presentation formats * Add Surface::get_supported_modes * Update to rust 2021 and improve some metal surface code * Update wgpu-types/src/lib.rs Co-authored-by: bjorn3 <17426603+bjorn3@users.noreply.github.com> * Fix windows build errors * Fix issues with ALLOW_TEARING Co-authored-by: bjorn3 <17426603+bjorn3@users.noreply.github.com>
22 lines
450 B
TOML
22 lines
450 B
TOML
[package]
|
|
name = "cts_runner"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Luca Casonato <hello@lcas.dev>",
|
|
]
|
|
edition = "2021"
|
|
description = "CTS runner for wgpu"
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
deno_console = "0.53.0"
|
|
deno_core = "0.135.0"
|
|
deno_url = "0.53.0"
|
|
deno_web = "0.84.0"
|
|
deno_webidl = "0.53.0"
|
|
deno_webgpu = { path = "../deno_webgpu" }
|
|
tokio = { version = "1.17.0", features = ["full"] }
|
|
termcolor = "1.1.2"
|