chore: format TOML files with taplo 0.9.3

This commit is contained in:
Erich Gubler 2024-10-04 10:57:23 -04:00
parent bc5b24520a
commit d22aa2eb55
7 changed files with 55 additions and 39 deletions

View File

@ -45,6 +45,4 @@ unknown-git = "deny"
required-git-spec = "rev"
[sources.allow-org]
github = [
"gfx-rs"
]
github = ["gfx-rs"]

View File

@ -1,9 +1,7 @@
[package]
name = "cts_runner"
version = "0.1.0"
authors = [
"Luca Casonato <hello@lcas.dev>"
]
authors = ["Luca Casonato <hello@lcas.dev>"]
edition.workspace = true
description = "CTS runner for wgpu"
license.workspace = true

View File

@ -33,7 +33,16 @@ features = ["serde"]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.wgc]
workspace = true
features = ["replay", "raw-window-handle", "strict_asserts", "wgsl", "metal", "dx12", "vulkan", "gles"]
features = [
"replay",
"raw-window-handle",
"strict_asserts",
"wgsl",
"metal",
"dx12",
"vulkan",
"gles",
]
[dev-dependencies]
serde.workspace = true

View File

@ -0,0 +1 @@

View File

@ -209,7 +209,17 @@ glam.workspace = true # for ray-traced-triangle example
winit.workspace = true # for "halmark" example
[target.'cfg(not(any(target_arch = "wasm32", target_os = "ios")))'.dev-dependencies]
glutin-winit = { workspace = true, features = ["egl", "wgl", "wayland", "x11"] } # for "raw-gles" example
glutin = { workspace = true, features = ["egl", "wgl", "wayland", "x11"] } # for "raw-gles" example
glutin-winit = { workspace = true, features = [
"egl",
"wgl",
"wayland",
"x11",
] } # for "raw-gles" example
glutin = { workspace = true, features = [
"egl",
"wgl",
"wayland",
"x11",
] } # for "raw-gles" example
rwh_05 = { version = "0.5", package = "raw-window-handle" } # temporary compatibility for glutin-winit in "raw-gles" example
winit = { workspace = true, features = ["rwh_05"] } # for "raw-gles" example