mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-02-16 08:53:20 +00:00
![Leo Kettmeir](/assets/img/avatar_default.png)
* chore: update deno * update spec * more error handling * cleanup queue * fix * fix byow Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com> * fix * fix * fix * fixes * fix cts * clean --------- Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
48 lines
1.5 KiB
TOML
48 lines
1.5 KiB
TOML
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_webgpu"
|
|
version = "0.110.0"
|
|
authors = ["the Deno authors"]
|
|
edition.workspace = true
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
description = "WebGPU implementation for Deno"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
# 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_core.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
wgpu-types = { workspace = true, features = ["serde"] }
|
|
raw-window-handle = { workspace = true }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.wgpu-core]
|
|
workspace = true
|
|
features = ["raw-window-handle", "trace", "replay", "serde", "strict_asserts", "wgsl", "gles"]
|
|
|
|
# We want the wgpu-core Metal backend on macOS and iOS.
|
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.wgpu-core]
|
|
workspace = true
|
|
features = ["metal"]
|
|
|
|
# We want the wgpu-core Direct3D backend on Windows.
|
|
[target.'cfg(windows)'.dependencies.wgpu-core]
|
|
workspace = true
|
|
features = ["dx12"]
|
|
|
|
[target.'cfg(windows)'.dependencies.wgpu-hal]
|
|
version = "0.19.0"
|
|
path = "../wgpu-hal"
|
|
features = ["windows_rs"]
|
|
|
|
# We want the wgpu-core Vulkan backend on Unix (but not Emscripten) and Windows.
|
|
[target.'cfg(any(windows, all(unix, not(target_os = "emscripten"))))'.dependencies.wgpu-core]
|
|
workspace = true
|
|
features = ["vulkan"]
|