mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-12-04 04:38:02 +00:00
chore: format TOML files with taplo
0.9.3
This commit is contained in:
parent
bc5b24520a
commit
d22aa2eb55
@ -45,6 +45,4 @@ unknown-git = "deny"
|
||||
required-git-spec = "rev"
|
||||
|
||||
[sources.allow-org]
|
||||
github = [
|
||||
"gfx-rs"
|
||||
]
|
||||
github = ["gfx-rs"]
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user